- 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

View File

@@ -22,8 +22,8 @@
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
****************************************************************************************/
#ifndef __OPENSPACE_MODULE_BASE___DEBUGGINGMODULE___H__
#define __OPENSPACE_MODULE_BASE___DEBUGGINGMODULE___H__
#ifndef __OPENSPACE_MODULE_DEBUGGING___DEBUGGINGMODULE___H__
#define __OPENSPACE_MODULE_DEBUGGING___DEBUGGINGMODULE___H__
#include <openspace/util/openspacemodule.h>
@@ -39,4 +39,4 @@ protected:
} // namespace openspace
#endif // __OPENSPACE_MODULE_BASE___DEBUGGINGMODULE___H__
#endif // __OPENSPACE_MODULE_DEBUGGING___DEBUGGINGMODULE___H__