Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move heap_ignore to Process
[simgrid.git] / src / mc / DwarfExpression.hpp
index 7a64654..3ac1777 100644 (file)
@@ -5,15 +5,15 @@
 
 #include <stdexcept>
 
-#include <mc/AddressSpace.hpp>
+#include "src/mc/AddressSpace.hpp"
 
 namespace simgrid {
 namespace dwarf {
 
 class evaluation_error : std::runtime_error {
 public:
-  evaluation_error(const char* what) : std::runtime_error(what) {}
-  ~evaluation_error();
+  evaluation_error(const char* what): std::runtime_error(what) {}
+  ~evaluation_error() noexcept(true);
 };
 
 struct ExpressionContext {
@@ -90,4 +90,4 @@ void execute(simgrid::dwarf::DwarfExpression const& expression,
 }
 }
 
-#endif
\ No newline at end of file
+#endif