I am generating some type definitions in C++ and it seems that whitespace before <%parameter.type%> arg<%=i%> is not forwarded until some other character appears there. ;<%parameter.type%> arg<%=i%> would forward the whitespace but obviously I would like to change this behaviour. Is that a bug?
<%func.parameters.forEach(function(parameter, i) {%>
<%parameter.type%> arg<%=i%> = getArgument<<%=parameter.type%>>(args[<%=i%>]);
<%}); %>
I am generating some type definitions in C++ and it seems that whitespace before
<%parameter.type%> arg<%=i%>is not forwarded until some other character appears there.;<%parameter.type%> arg<%=i%>would forward the whitespace but obviously I would like to change this behaviour. Is that a bug?