From: Christian Heinrich Date: Fri, 20 Apr 2018 16:37:35 +0000 (+0200) Subject: [SMPI] Add #ifndef to the new header files. X-Git-Tag: v3.20~40 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/683badf68ad1cd5041b64218d91000781cf67481 [SMPI] Add #ifndef to the new header files. --- 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