[Orxonox-commit 916] r5639 - code/branches/libraries/src/core
rgrieder at orxonox.net
rgrieder at orxonox.net
Wed Aug 12 19:26:24 CEST 2009
Author: rgrieder
Date: 2009-08-12 19:26:24 +0200 (Wed, 12 Aug 2009)
New Revision: 5639
Modified:
code/branches/libraries/src/core/DynLib.h
code/branches/libraries/src/core/DynLibManager.h
Log:
Just so we'll sure never have macro problems regarding include guards.
Modified: code/branches/libraries/src/core/DynLib.h
===================================================================
--- code/branches/libraries/src/core/DynLib.h 2009-08-12 15:13:28 UTC (rev 5638)
+++ code/branches/libraries/src/core/DynLib.h 2009-08-12 17:26:24 UTC (rev 5639)
@@ -29,8 +29,8 @@
// 08/11/2009: Small adjustments for Orxonox by Fabian 'x3n' Landau
-#ifndef _DynLib_H__
-#define _DynLib_H__
+#ifndef _Core_DynLib_H__
+#define _Core_DynLib_H__
#include "CorePrereqs.h"
@@ -118,4 +118,4 @@
}
-#endif
+#endif /* _Core_DynLib_H__ */
Modified: code/branches/libraries/src/core/DynLibManager.h
===================================================================
--- code/branches/libraries/src/core/DynLibManager.h 2009-08-12 15:13:28 UTC (rev 5638)
+++ code/branches/libraries/src/core/DynLibManager.h 2009-08-12 17:26:24 UTC (rev 5639)
@@ -29,8 +29,8 @@
// 08/11/2009: Small adjustments for Orxonox by Fabian 'x3n' Landau
-#ifndef _DynLibManager_H__
-#define _DynLibManager_H__
+#ifndef _Core_DynLibManager_H__
+#define _Core_DynLibManager_H__
#include "CorePrereqs.h"
#include "util/Singleton.h"
@@ -84,4 +84,4 @@
};
}
-#endif
+#endif /* _Core_DynLibManager_H__ */
More information about the Orxonox-commit
mailing list