Modernize include guards and add missing ones (#9898)
authorAwkor <awkor.16+github@gmail.com>
Sat, 23 May 2020 11:23:05 +0000 (13:23 +0200)
committerGitHub <noreply@github.com>
Sat, 23 May 2020 11:23:05 +0000 (13:23 +0200)
src/client/hud.h
src/client/render/factory.h
src/gui/guiButtonImage.h
src/gui/guiButtonItemImage.h
src/hud.h
src/script/lua_api/l_particles_local.h
src/util/md32_common.h

index 6274b1a83032cacd759b1e9051f6916d656303db..e2abf326c7cd1f7590d570942a083f7f33fd651b 100644 (file)
@@ -18,8 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef CLIENT_HUD_HEADER
-#define CLIENT_HUD_HEADER
+#pragma once
 
 #include <vector>
 #include <IGUIFont.h>
@@ -147,4 +146,3 @@ void drawItemStack(
                const v3s16 &angle,
                const v3s16 &rotation_speed);
 
-#endif
index 22738404a2305a0cee833acb42dfc127256a78b8..e3339a836e5d3f824e966a1d77f683b027faa52d 100644 (file)
@@ -18,6 +18,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#pragma once
+
 #include <string>
 #include "core.h"
 
index a948d772b1e884a5588ba04a0d581ca6cfcf5bcd..59a25b4f04b59b1e64451adcb544c5d81dd43695 100644 (file)
@@ -17,6 +17,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#pragma once
+
 #include "guiButton.h"
 #include "IGUIButton.h"
 
index 9cd0f61887c9c7efe517480265025ea2cd6bc99a..aad923bdab1fdea235206dd94576527b1140fb69 100644 (file)
@@ -17,6 +17,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#pragma once
+
 #include "guiButton.h"
 #include "IGUIButton.h"
 
index bab420ed2064e903dec324ebd9bfa61efe3c9671..e015baec125fbf9dfe6334a52944c89937097aa6 100644 (file)
--- a/src/hud.h
+++ b/src/hud.h
@@ -18,8 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef HUD_HEADER
-#define HUD_HEADER
+#pragma once
 
 #include "irrlichttypes_extrabloated.h"
 #include <string>
@@ -101,4 +100,3 @@ extern const EnumString es_HudElementType[];
 extern const EnumString es_HudElementStat[];
 extern const EnumString es_HudBuiltinElement[];
 
-#endif
index 5dff153b3006b802305d66d0c2e2ce4e647bcc75..d8bb2b1c62cd18cd0808ab275757ea6992bca52a 100644 (file)
@@ -18,6 +18,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#pragma once
+
 #include "lua_api/l_base.h"
 
 class ModApiParticlesLocal : public ModApiBase
index 085d1d7a506cd8d18bef927590dd61adf07935ef..a4c2099c9096fee2af86a5945b41df3e9d3df427 100644 (file)
  *                                      <appro@fy.chalmers.se>
  */
 
+#pragma once
+
 #if !defined(DATA_ORDER_IS_BIG_ENDIAN) && !defined(DATA_ORDER_IS_LITTLE_ENDIAN)
 # error "DATA_ORDER must be defined!"
 #endif