diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-02 15:06:26 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-02 15:06:26 +0900 |
commit | 239c33243b21f120f581a646b298950bb18489ee (patch) | |
tree | f79066b8148b21c5e50f4ef856ff0e5611084ff8 /lib/csapi/{{base}}.h.mustache | |
parent | c1c03990e87d6821624566b2332e8bd504436700 (diff) | |
download | libquotient-239c33243b21f120f581a646b298950bb18489ee.tar.gz libquotient-239c33243b21f120f581a646b298950bb18489ee.zip |
GTAD: drop question marks and "true" from attributes
They lead to an (incorrect) assumption that those attributes are actual
binary flags rather than just flags (there's no such thing as
avoidCopy=false, avoidCopy should be absent instead).
Diffstat (limited to 'lib/csapi/{{base}}.h.mustache')
-rw-r--r-- | lib/csapi/{{base}}.h.mustache | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csapi/{{base}}.h.mustache b/lib/csapi/{{base}}.h.mustache index 1d24163f..80d8bbac 100644 --- a/lib/csapi/{{base}}.h.mustache +++ b/lib/csapi/{{base}}.h.mustache @@ -50,7 +50,7 @@ namespace QMatrixClient // Result properties {{#allProperties}} - {{>maybeCrefType}} {{paramName}}(){{^noCopy?}} const{{/noCopy?}};{{/allProperties}} + {{>maybeCrefType}} {{paramName}}(){{^moveOnly}} const{{/moveOnly}};{{/allProperties}} protected: Status {{#producesNonJson?}}parseReply(QNetworkReply* reply){{/producesNonJson?}}{{^producesNonJson?}}parseJson(const QJsonDocument& data){{/producesNonJson?}} override; |