diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-07 18:55:07 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-07 18:55:07 +0900 |
commit | 29bff90ecb0d1febfa8728383195f0f41c9a29ef (patch) | |
tree | 032d37201d44dd52af9d7295f29a5233aaef7e2b /jobs | |
parent | 14302ddbac1e6d9c95de15c97362c3de09f545eb (diff) | |
download | libquotient-29bff90ecb0d1febfa8728383195f0f41c9a29ef.tar.gz libquotient-29bff90ecb0d1febfa8728383195f0f41c9a29ef.zip |
Fix building with VS2013
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/syncjob.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/jobs/syncjob.h b/jobs/syncjob.h index 55d7458c..a9138a65 100644 --- a/jobs/syncjob.h +++ b/jobs/syncjob.h @@ -38,7 +38,15 @@ namespace QMatrixClient { public: Owning() = default; +#if defined(_MSC_VER) && _MSC_VER < 1900 + // Workaround: Dangerous (auto_ptr style) copy constructor because + // VS2013 (unnecessarily) instantiates EventList::QVector<>::toList() + // which instantiates QList< Owning<> > which needs the contained + // object to have a non-deleted copy constructor. + Owning(Owning& other) : ContainerT(std::move(other)) { } +#else Owning(Owning&) = delete; +#endif Owning(Owning&& other) : ContainerT(std::move(other)) { } ~Owning() { for (auto e: *this) delete e; } |