diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-04 12:02:50 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 12:10:32 +0000 |
commit | 7d1047490e4380c4f02900b711c66055d29fb387 (patch) | |
tree | ff3a4b9063b9b8b6e2cf1b36c185c3ad47de99e7 /include/opertype.h | |
parent | c9f93eeaedcf3e2d211fea7799ea529d76ebaad5 (diff) |
Consistently use #pragma once across all header files.
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H.
Diffstat (limited to 'include/opertype.h')
-rw-r--r-- | include/opertype.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/opertype.h b/include/opertype.h index 9e46dda5b..dab26c7f6 100644 --- a/include/opertype.h +++ b/include/opertype.h @@ -6,8 +6,7 @@ * Please read COPYING and README for further details. */ -#ifndef OPERTYPE_H -#define OPERTYPE_H +#pragma once #include "services.h" #include "account.h" @@ -123,5 +122,3 @@ class CoreExport OperType */ const std::list<Anope::string> GetPrivs() const; }; - -#endif // OPERTYPE_H |