Browse Source

[4088] Trivial fix to make it compile

Francis Dupont 9 years ago
parent
commit
d6178bcf6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/eval/eval_context.h

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

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