diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-10-30 12:21:43 +0100 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2023-11-15 20:19:18 +0100 |
commit | fe907ca625657dce0e2f08f2129cf36c840602d3 (patch) | |
tree | 5cb9e6e9bf3e272a7d3051e214a999bee4124d93 /src/buildtool/serve_api/remote/config.hpp | |
parent | 6133c0db955d0283daafd86060040ab7dcaaa98d (diff) | |
download | justbuild-fe907ca625657dce0e2f08f2129cf36c840602d3.tar.gz |
serve api config: Fix missing header guard
Diffstat (limited to 'src/buildtool/serve_api/remote/config.hpp')
-rw-r--r-- | src/buildtool/serve_api/remote/config.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buildtool/serve_api/remote/config.hpp b/src/buildtool/serve_api/remote/config.hpp index 6ea927cb..02461167 100644 --- a/src/buildtool/serve_api/remote/config.hpp +++ b/src/buildtool/serve_api/remote/config.hpp @@ -12,6 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. +#ifndef INCLUDED_SRC_BUILDTOOL_SERVE_API_REMOTE_CONFIG_HPP +#define INCLUDED_SRC_BUILDTOOL_SERVE_API_REMOTE_CONFIG_HPP + #include <filesystem> #include <iterator> #include <vector> @@ -62,3 +65,5 @@ class RemoteServeConfig { // Known Git repositories to serve server. std::vector<std::filesystem::path> repositories_{}; }; + +#endif // INCLUDED_SRC_BUILDTOOL_SERVE_API_REMOTE_CONFIG_HPP |