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
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 /overlay/overlay_blacklist.h
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 'overlay/overlay_blacklist.h')
-rw-r--r--overlay/overlay_blacklist.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/overlay/overlay_blacklist.h b/overlay/overlay_blacklist.h
index 94bc1748b..374ced512 100644
--- a/overlay/overlay_blacklist.h
+++ b/overlay/overlay_blacklist.h
@@ -28,8 +28,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef _OVERLAY_BLACKLIST_H
-#define _OVERLAY_BLACKLIST_H
+#ifndef OVERLAY_BLACKLIST_H_
+#define OVERLAY_BLACKLIST_H_
static const char *overlayBlacklist[] = {
"iexplore.exe",
@@ -66,5 +66,4 @@ static const char *overlayBlacklist[] = {
NULL
};
-#endif // _OVERLAY_BLACKLIST_H
-
+#endif