Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar: use public inheritance.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 28 Oct 2017 16:05:34 +0000 (18:05 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 28 Oct 2017 21:18:37 +0000 (23:18 +0200)
src/mc/DwarfExpression.hpp

index 38bcbca..19c5b14 100644 (file)
@@ -56,7 +56,7 @@ public:
 };
 
 /** When an error happens in the execution of a DWARF expression */
 };
 
 /** When an error happens in the execution of a DWARF expression */
-class evaluation_error : std::runtime_error {
+class evaluation_error : public std::runtime_error {
 public:
   explicit evaluation_error(const char* what) : std::runtime_error(what) {}
 };
 public:
   explicit evaluation_error(const char* what) : std::runtime_error(what) {}
 };