Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-23 14:41:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 14:41:31 +0400
commitb8e019d8396ed102323df234df8b1cc6b35712a1 (patch)
tree64f4fdb413336113b8c92198097831941c6fc171 /source/gameengine/Network/LoopBackNetwork
parent3dd449ae4fbb2eb6f9eb63e9f9de61def58abe16 (diff)
use __ prefix on header guards to avoid mixing up defines with api functions / classes.
Diffstat (limited to 'source/gameengine/Network/LoopBackNetwork')
-rw-r--r--source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h b/source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h
index 968d56b2473..a356b20ed1a 100644
--- a/source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h
+++ b/source/gameengine/Network/LoopBackNetwork/NG_LoopBackNetworkDeviceInterface.h
@@ -29,8 +29,8 @@
* \ingroup bgenetlb
* \brief LoopbackNetworkDeviceInterface derived from NG_NetworkDeviceInterface
*/
-#ifndef NG_LOOPBACKNETWORKDEVICEINTERFACE_H
-#define NG_LOOPBACKNETWORKDEVICEINTERFACE_H
+#ifndef __NG_LOOPBACKNETWORKDEVICEINTERFACE_H__
+#define __NG_LOOPBACKNETWORKDEVICEINTERFACE_H__
#include <deque>
#include "NG_NetworkDeviceInterface.h"
@@ -58,5 +58,5 @@ public:
virtual std::vector<NG_NetworkMessage*> RetrieveNetworkMessages();
};
-#endif //NG_LOOPBACKNETWORKDEVICEINTERFACE_H
+#endif //__NG_LOOPBACKNETWORKDEVICEINTERFACE_H__