- 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:
Alexander Bock
2017-02-10 14:46:51 -05:00
parent 23ea86949f
commit 70020e3de7
25 changed files with 125 additions and 82 deletions
+3 -4
View File
@@ -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__