From 683badf68ad1cd5041b64218d91000781cf67481 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Fri, 20 Apr 2018 18:37:35 +0200 Subject: [PATCH] [SMPI] Add #ifndef to the new header files. --- include/simgrid/plugins/load_balancer.h | 9 +++++++++ include/simgrid/smpi/replay.hpp | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/include/simgrid/plugins/load_balancer.h b/include/simgrid/plugins/load_balancer.h index 0d7e857f5a..8e83cab362 100644 --- a/include/simgrid/plugins/load_balancer.h +++ b/include/simgrid/plugins/load_balancer.h @@ -1 +1,10 @@ +/* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ +#ifndef SIMGRID_PLUGINS_LOAD_BALANCER_H_ +#define SIMGRID_PLUGINS_LOAD_BALANCER_H_ + void sg_load_balancer_plugin_init(); + +#endif diff --git a/include/simgrid/smpi/replay.hpp b/include/simgrid/smpi/replay.hpp index 3269015c7e..681c6b3051 100644 --- a/include/simgrid/smpi/replay.hpp +++ b/include/simgrid/smpi/replay.hpp @@ -2,6 +2,9 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#ifndef SMPI_REPLAY_HPP +#define SMPI_REPLAY_HPP + #include "private.hpp" #include @@ -301,3 +304,5 @@ public: } } } + +#endif -- 2.20.1