summaryrefslogtreecommitdiff
path: root/tools/xml2cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xml2cpp.cpp')
-rw-r--r--tools/xml2cpp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/xml2cpp.cpp b/tools/xml2cpp.cpp
index 3b38c6c..05f55ac 100644
--- a/tools/xml2cpp.cpp
+++ b/tools/xml2cpp.cpp
@@ -155,6 +155,10 @@ void _parse_signature( const string& signature, string& type, unsigned int& i )
++i;
_parse_signature(signature, type, i);
type += " >";
+ if(signature[i+1])
+ {
+ type += ", ";
+ }
continue;
}
case ')':