Browse Source

suppress warning in exprtk

Former-commit-id: 37d62c2cd8 [formerly 9b5bc92c7d]
Former-commit-id: 9df47fcdb1
tempestpy_adaptions
sjunges 8 years ago
parent
commit
87df1e3be4
  1. 14
      src/storage/expressions/ExprtkExpressionEvaluator.h

14
src/storage/expressions/ExprtkExpressionEvaluator.h

@ -1,5 +1,4 @@
#ifndef STORM_STORAGE_EXPRESSIONS_EXPRTKEXPRESSIONEVALUATOR_H_
#define STORM_STORAGE_EXPRESSIONS_EXPRTKEXPRESSIONEVALUATOR_H_
#pragma once
#include <memory>
#include <unordered_map>
@ -7,7 +6,16 @@
#include "src/storage/expressions/ExpressionEvaluatorBase.h"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic push
#include "exprtk.hpp"
#pragma GCC diagnostic pop
#pragma clang diagnostic pop
#include "src/storage/expressions/ToExprtkStringVisitor.h"
namespace storm {
@ -64,5 +72,3 @@ namespace storm {
};
}
}
#endif /* STORM_STORAGE_EXPRESSIONS_EXPRTKEXPRESSIONEVALUATOR_H_ */
Loading…
Cancel
Save