diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-09 19:23:00 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-02-09 21:15:59 +0900 |
commit | d1cf4bc530613a9d3ee10768dd068a0391f6e105 (patch) | |
tree | 115d412adccb617aff576646bed9f7a6f0a03f37 /lib/util.h | |
parent | c810b069ab827b1149aeeb9e1f662e5ef85867e5 (diff) | |
download | libquotient-d1cf4bc530613a9d3ee10768dd068a0391f6e105.tar.gz libquotient-d1cf4bc530613a9d3ee10768dd068a0391f6e105.zip |
csapi: GetCapabilitiesJob (MSC1753)
Diffstat (limited to 'lib/util.h')
-rw-r--r-- | lib/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -103,6 +103,9 @@ namespace QMatrixClient } Omittable<T>& operator=(value_type&& val) { + // For some reason GCC complains about -Wmaybe-uninitialized + // in the context of using Omittable<bool> with converters.h; + // though the logic looks very much benign (GCC bug???) _value = std::move(val); _omitted = false; return *this; |