Skip to content

Commit 1d5c41a

Browse files
j-probertmartinweismann
authored andcommitted
Fix basic array implementation for C++
1 parent c95f4a0 commit 1d5c41a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Source/buildimplementationcpp.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1804,7 +1804,6 @@ func generatePrePostCallCPPFunctionCode(component ComponentDefinition, method Co
18041804
case "basicarray":
18051805
checkInputCode = append(checkInputCode, fmt.Sprintf("if ( (!p%sBuffer) && (n%sBufferSize>0))", param.ParamName, param.ParamName))
18061806
checkInputCode = append(checkInputCode, fmt.Sprintf(" throw %s (%s_ERROR_INVALIDPARAM);", exceptionType, strings.ToUpper(NameSpace)))
1807-
callParameters = callParameters + fmt.Sprintf("n%sBufferSize, ", param.ParamName) + variableName
18081807
if (isClientImpl) {
18091808
callParameters = callParameters + fmt.Sprintf("%sInputVector(%s, n%sBufferSize)", ClassIdentifier, variableName, param.ParamName)
18101809
} else {

0 commit comments

Comments
 (0)