1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Removed leading underscore from module generator header guards.

This commit is contained in:
Jason Heeris
2019-02-22 08:38:29 +11:00
parent 9ef1088eb7
commit ead95b3ab8

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