diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-01 09:42:50 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-01 09:42:50 +0900 |
commit | f353c7841d9aec6ccc65ae2841f20b420872833f (patch) | |
tree | e14d8031218cb9abbf9c52177d2660cde74b875e | |
parent | 1a58c8382575e39acd5ef438480aff2fe7cf79ad (diff) | |
download | libquotient-f353c7841d9aec6ccc65ae2841f20b420872833f.tar.gz libquotient-f353c7841d9aec6ccc65ae2841f20b420872833f.zip |
Add GCC 4.9.2 to the workaround path for FileTransferInfo code
Closes #161. Doesn't make GCC 4.9.2 officially supported but libqmatrixclient can be compiled with it as of now.
-rw-r--r-- | room.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,7 +99,7 @@ class Room::Private struct FileTransferPrivateInfo { -#if defined(_MSC_VER) && _MSC_VER < 1910 +#if (defined(_MSC_VER) && _MSC_VER < 1910) || (defined(__GNUC__) && __GNUC__ <= 4) FileTransferPrivateInfo() = default; FileTransferPrivateInfo(BaseJob* j, QString fileName) : job(j), localFileInfo(fileName) @@ -561,7 +561,7 @@ FileTransferInfo Room::fileTransferInfo(const QString& id) const total = INT_MAX; } -#if defined(_MSC_VER) && _MSC_VER < 1910 +#if (defined(_MSC_VER) && _MSC_VER < 1910) || (defined(__GNUC__) && __GNUC__ <= 4) // A workaround for MSVC 2015 that fails with "error C2440: 'return': // cannot convert from 'initializer list' to 'QMatrixClient::FileTransferInfo'" FileTransferInfo fti; |