Code quality: Fix header guards consistency
Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
This commit is contained in:
@ -38,4 +38,4 @@ namespace TestAStar {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_ASTAR_H
|
||||
|
||||
@ -37,4 +37,4 @@ namespace TestBasis {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_BASIS_H
|
||||
|
||||
@ -38,4 +38,4 @@ namespace TestCrypto {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_CRYPTO_H
|
||||
|
||||
@ -38,4 +38,4 @@ namespace TestGUI {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_GUI_H
|
||||
|
||||
@ -38,4 +38,4 @@ namespace TestMath {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_MATH_H
|
||||
|
||||
@ -38,4 +38,4 @@ namespace TestPhysics {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_PHYSICS_H
|
||||
|
||||
@ -38,4 +38,4 @@ namespace TestRender {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_RENDER_H
|
||||
|
||||
@ -39,4 +39,4 @@ namespace TestString {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_STRING_H
|
||||
|
||||
@ -38,4 +38,5 @@ namespace TestTheme {
|
||||
MainLoop *test();
|
||||
|
||||
}
|
||||
|
||||
#endif // TEST_THEME_H
|
||||
|
||||
@ -37,4 +37,4 @@ namespace TestTransform {
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // TEST_TRANSFORM_H
|
||||
|
||||
@ -42,4 +42,5 @@ namespace TestXMLParser {
|
||||
|
||||
MainLoop *test();
|
||||
}
|
||||
|
||||
#endif // TEST_XML_PARSER_H
|
||||
|
||||
Reference in New Issue
Block a user