Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Map number to double time since float is also parsed as double in Qt5…
… C++
  • Loading branch information
etherealjoy committed May 31, 2019
commit 100170685cd28df4c8130d935f464675a19d812c
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public CppQt5AbstractCodegen() {
typeMapping.put("integer", "qint32");
typeMapping.put("long", "qint64");
typeMapping.put("boolean", "bool");
typeMapping.put("number", "double");
typeMapping.put("array", "QList");
typeMapping.put("map", "QMap");
typeMapping.put("object", PREFIX + "Object");
Expand Down