diff options
author | Andrei Pavel <andrei.pavel@qualitance.com> | 2016-12-14 15:15:52 +0100 |
---|---|---|
committer | Andrei Pavel <andrei.pavel@qualitance.com> | 2016-12-14 15:15:52 +0100 |
commit | 083dfcb218dfb2f88495b1355e3a548b30ec4d09 (patch) | |
tree | 69764988222709dc30d0b55cd06a2ccb528c4f36 /src/lib/exceptions | |
parent | [master] Addressed doxygen warnings raised. (diff) | |
download | kea-083dfcb218dfb2f88495b1355e3a548b30ec4d09.tar.xz kea-083dfcb218dfb2f88495b1355e3a548b30ec4d09.zip |
Added #include <config.h> to all .cc files.
Diffstat (limited to 'src/lib/exceptions')
-rw-r--r-- | src/lib/exceptions/exceptions.cc | 2 | ||||
-rw-r--r-- | src/lib/exceptions/tests/exceptions_unittest.cc | 2 | ||||
-rw-r--r-- | src/lib/exceptions/tests/run_unittests.cc | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/exceptions/exceptions.cc b/src/lib/exceptions/exceptions.cc index 22ee7aaf46..bc0d83ae1c 100644 --- a/src/lib/exceptions/exceptions.cc +++ b/src/lib/exceptions/exceptions.cc @@ -4,6 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. +#include <config.h> + #include <string> #include <sstream> #include <exceptions/exceptions.h> diff --git a/src/lib/exceptions/tests/exceptions_unittest.cc b/src/lib/exceptions/tests/exceptions_unittest.cc index 381b84eb02..a2ee416572 100644 --- a/src/lib/exceptions/tests/exceptions_unittest.cc +++ b/src/lib/exceptions/tests/exceptions_unittest.cc @@ -4,6 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. +#include <config.h> + #include <stdexcept> #include <string> diff --git a/src/lib/exceptions/tests/run_unittests.cc b/src/lib/exceptions/tests/run_unittests.cc index 4df5b5d8f6..92e2240d3d 100644 --- a/src/lib/exceptions/tests/run_unittests.cc +++ b/src/lib/exceptions/tests/run_unittests.cc @@ -4,6 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. +#include <config.h> + #include <gtest/gtest.h> int |