mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-07 03:49:43 -05:00
- Add style check for correct use of components and subcomponents in
include guards - Disallow use of lower case characters in include guards - Fix wrong components and subcomponents
This commit is contained in:
@@ -22,8 +22,8 @@
|
||||
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
||||
****************************************************************************************/
|
||||
|
||||
#ifndef __OPENSPACE_CORE___SCRIPTHELPER___H__
|
||||
#define __OPENSPACE_CORE___SCRIPTHELPER___H__
|
||||
#ifndef __OPENSPACE_CORE___SCRIPT_HELPER___H__
|
||||
#define __OPENSPACE_CORE___SCRIPT_HELPER___H__
|
||||
|
||||
#define SCRIPT_CHECK_ARGUMENTS(__category__, __stack__, __reqArg__, __realArg__) \
|
||||
if (__realArg__ != __reqArg__) { \
|
||||
@@ -32,5 +32,4 @@
|
||||
return 0; \
|
||||
}
|
||||
|
||||
|
||||
#endif // __OPENSPACE_CORE___SCRIPTHELPER___H__
|
||||
#endif // __OPENSPACE_CORE___SCRIPT_HELPER___H__
|
||||
|
||||
Reference in New Issue
Block a user