summaryrefslogtreecommitdiff
path: root/sigc++/signal_base.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++/signal_base.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++/signal_base.h')
-rw-r--r--sigc++/signal_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sigc++/signal_base.h b/sigc++/signal_base.h
index d393a5b..8df9dc4 100644
--- a/sigc++/signal_base.h
+++ b/sigc++/signal_base.h
@@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _SIGC_SIGNAL_BASE_H_
-#define _SIGC_SIGNAL_BASE_H_
+#ifndef SIGC_SIGNAL_BASE_H
+#define SIGC_SIGNAL_BASE_H
#include <cstddef>
#include <list>
@@ -393,4 +393,4 @@ protected:
} // namespace sigc
-#endif /* _SIGC_SIGNAL_BASE_H_ */
+#endif /* SIGC_SIGNAL_BASE_H */