summaryrefslogtreecommitdiff
path: root/src/buildtool/serve_api/remote/config.hpp
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-10-30 12:21:43 +0100
committerAlberto Sartori <alberto.sartori@huawei.com>2023-11-15 20:19:18 +0100
commitfe907ca625657dce0e2f08f2129cf36c840602d3 (patch)
tree5cb9e6e9bf3e272a7d3051e214a999bee4124d93 /src/buildtool/serve_api/remote/config.hpp
parent6133c0db955d0283daafd86060040ab7dcaaa98d (diff)
downloadjustbuild-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.hpp5
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