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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/macx
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2013-01-13 02:12:32 +0400
committerKissaki <kissaki@gmx.de>2013-06-04 23:59:50 +0400
commit40ca9b4507eed28c800fa724770d70cccc273882 (patch)
tree4ca8147385d4ab691f136170a7fd95b20261da30 /macx
parent5ff038eac05ea85084ffb749a8c92087327ee4b5 (diff)
Rename header guard defines to not use c++-reserved names
* as pointed out in issue #842 adjust names to match other header files
Diffstat (limited to 'macx')
-rw-r--r--macx/overlay/mach_override.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/macx/overlay/mach_override.h b/macx/overlay/mach_override.h
index 76fdb1bbd..5cdee77bc 100644
--- a/macx/overlay/mach_override.h
+++ b/macx/overlay/mach_override.h
@@ -42,8 +42,8 @@
***************************************************************************/
-#ifndef _mach_override_
-#define _mach_override_
+#ifndef MACH_OVERRIDE_H_
+#define MACH_OVERRIDE_H_
#include <sys/types.h>
#include <mach/error.h>
@@ -118,4 +118,4 @@ mach_override_ptr(
#ifdef __cplusplus
}
#endif
-#endif // _mach_override_
+#endif