diff options
author | Andrei Pavel <andrei@isc.org> | 2024-10-23 15:40:14 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2024-10-23 15:40:30 +0200 |
commit | 8195f702e7f2271067411890e073d4b303b69232 (patch) | |
tree | 90f05edc3d8fc5cae4d78b9b74080a66542d3799 /src/bin/lfc/lfc_controller.h | |
parent | [#3605] Prepare existing code for fuzzing (diff) | |
download | kea-8195f702e7f2271067411890e073d4b303b69232.tar.xz kea-8195f702e7f2271067411890e073d4b303b69232.zip |
[#3605] Remove extra semis
Diffstat (limited to 'src/bin/lfc/lfc_controller.h')
-rw-r--r-- | src/bin/lfc/lfc_controller.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/lfc/lfc_controller.h b/src/bin/lfc/lfc_controller.h index d58b418358..845b73617c 100644 --- a/src/bin/lfc/lfc_controller.h +++ b/src/bin/lfc/lfc_controller.h @@ -1,4 +1,4 @@ -// Copyright (C) 2015-2018 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2015-2024 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -17,7 +17,7 @@ namespace lfc { class InvalidUsage : public isc::Exception { public: InvalidUsage(const char* file, size_t line, const char* what) : - isc::Exception(file, line, what) { }; + isc::Exception(file, line, what) { } }; /// @brief Exceptions thrown when a method is unable to manipulate @@ -25,7 +25,7 @@ public: class RunTimeFail : public isc::Exception { public: RunTimeFail(const char* file, size_t line, const char* what) : - isc::Exception(file, line, what) { }; + isc::Exception(file, line, what) { } }; /// @brief Process controller for LFC process @@ -197,7 +197,7 @@ private: void startLogger(const bool test_mode) const; }; -}; // namespace isc::lfc -}; // namespace isc +} // namespace isc::lfc +} // namespace isc #endif // LFC_CONTROLLER_H |