diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-08-28 10:28:58 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-08-28 10:28:58 +0900 |
commit | 72f7d49f89c14965be7d667f83a20c9d527708cb (patch) | |
tree | 498b1eb674e6a71af5a09f3554ea1aaae16705a3 /util.h | |
parent | 5f85a2bfc5d5fee00fcdfb1230af32344376e39a (diff) | |
download | libquotient-72f7d49f89c14965be7d667f83a20c9d527708cb.tar.gz libquotient-72f7d49f89c14965be7d667f83a20c9d527708cb.zip |
Use -pedantic with compilers that support it
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ namespace QMatrixClient Dispatch<ResultT, ArgTs...> dispatch(ArgTs&& ... args) { return Dispatch<ResultT, ArgTs...>(std::forward<ArgTs...>(args)...); - }; + } // The below enables pretty-printing of enums in logs #if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)) |