File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,24 +60,24 @@ def __str__(self):
60
60
current_guard = None
61
61
for function in self .functions :
62
62
if function .guard == None :
63
- content .append (str (function ) + "__NOEXCEPT" )
63
+ content .append (str (function ) + " __NOEXCEPT; " )
64
64
content .append ("" )
65
65
else :
66
66
if current_guard == None :
67
67
current_guard = function .guard
68
68
content .append (f"#ifdef { current_guard } " )
69
- content .append (str (function ) + "__NOEXCEPT" )
69
+ content .append (str (function ) + " __NOEXCEPT; " )
70
70
content .append ("" )
71
71
elif current_guard == function .guard :
72
- content .append (str (function ) + "__NOEXCEPT" )
72
+ content .append (str (function ) + " __NOEXCEPT; " )
73
73
content .append ("" )
74
74
else :
75
75
content .pop ()
76
76
content .append (f"#endif // { current_guard } " )
77
77
content .append ("" )
78
78
current_guard = function .guard
79
79
content .append (f"#ifdef { current_guard } " )
80
- content .append (str (function ) + "__NOEXCEPT" )
80
+ content .append (str (function ) + " __NOEXCEPT; " )
81
81
content .append ("" )
82
82
if current_guard != None :
83
83
content .pop ()
You can’t perform that action at this time.
0 commit comments