summaryrefslogtreecommitdiff
path: root/sigc++/functors/slot.h
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-19 13:53:42 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-19 13:53:42 +0200
commite496f99c1596b49964ed6a572c6f4f68d900bbe4 (patch)
treef4d84636a722a68b034a2d43d7d86715e618fd40 /sigc++/functors/slot.h
parentf19a492808d724a0f73e83fdf76ba7aa2aa3338c (diff)
downloadsigc++-e496f99c1596b49964ed6a572c6f4f68d900bbe4.tar.gz
Header guards: Remove leading underscores (and trailing underscores).
Names with leading underscores are reserved in C++.
Diffstat (limited to 'sigc++/functors/slot.h')
-rw-r--r--sigc++/functors/slot.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sigc++/functors/slot.h b/sigc++/functors/slot.h
index 59dc3c6..b9de448 100644
--- a/sigc++/functors/slot.h
+++ b/sigc++/functors/slot.h
@@ -1,5 +1,5 @@
-#ifndef _SIGC_FUNCTORS_SLOT_H_
-#define _SIGC_FUNCTORS_SLOT_H_
+#ifndef SIGC_FUNCTORS_SLOT_H
+#define SIGC_FUNCTORS_SLOT_H
#include <sigc++/trackable.h>
#include <sigc++/visit_each.h>
@@ -270,4 +270,4 @@ struct visitor<slot<T_return, T_arg...>>
} /* namespace sigc */
-#endif /* _SIGC_FUNCTORS_SLOT_H_ */
+#endif /* SIGC_FUNCTORS_SLOT_H */