Merge pull request #391 from detly/master

Removed leading underscore from module generator header guards. (Thanks @detly !)
This commit is contained in:
Mark VanderVoord
2019-02-21 17:07:10 -05:00
committed by GitHub

View File

@ -35,11 +35,11 @@ TEMPLATE_SRC ||= '%2$s#include "%1$s.h"
'.freeze
# TEMPLATE_INC
TEMPLATE_INC ||= '#ifndef _%3$s_H
#define _%3$s_H
TEMPLATE_INC ||= '#ifndef %3$s_H
#define %3$s_H
%2$s
#endif // _%3$s_H
#endif // %3$s_H
'.freeze
class UnityModuleGenerator