Skip to content

Commit

Permalink
Added disabling of stringout caching
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderoster committed Feb 17, 2022
1 parent e2c6671 commit 9c43dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/buildimplementationcpp.go
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ func writeCImplementationMethod(component ComponentDefinition, method ComponentD

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

Expand Down

0 comments on commit 9c43dd5

Please sign in to comment.