Parcourir la source

[4088] Trivial fix to make it compile

Francis Dupont il y a 9 ans
Parent
commit
d6178bcf6e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/lib/eval/eval_context.h

+ 1 - 1
src/lib/eval/eval_context.h

@@ -26,7 +26,7 @@
 YY_DECL;
 
 /// @brief Evaluation error exception raised when trying to parse an axceptions.
-class EvalError : public isc::exceptions::Exception {
+class EvalError : public isc::Exception {
 public:
     EvalError(const char* file, size_t line, const char* what) :
         isc::Exception(file, line, what) { };