Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Add #ifndef to the new header files.
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 20 Apr 2018 16:37:35 +0000 (18:37 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Thu, 21 Jun 2018 09:55:40 +0000 (11:55 +0200)
include/simgrid/plugins/load_balancer.h
include/simgrid/smpi/replay.hpp

index 0d7e857..8e83cab 100644 (file)
@@ -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
index 3269015..681c6b3 100644 (file)
@@ -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 <xbt/replay.hpp>
 
@@ -301,3 +304,5 @@ public:
 }
 }
 }
+
+#endif