Skip to content

Commit 9c43dd5

Browse files
Added disabling of stringout caching
1 parent e2c6671 commit 9c43dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/buildimplementationcpp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ func writeCImplementationMethod(component ComponentDefinition, method ComponentD
969969

970970
// Special functions are an exception for string outs in global functions!
971971
bHasCacheCall := (len (stringOutParameters) > 0) && (isSpecialFunction != eSpecialMethodError) && (isSpecialFunction != eSpecialMethodBuildinfo) && (isSpecialFunction != eSpecialMethodPrerelease);
972-
if (isGlobal && method.DisableStringOutCache) {
972+
if (method.DisableStringOutCache) {
973973
bHasCacheCall = false;
974974
}
975975

0 commit comments

Comments
 (0)