Officially drop support for Visual Studio 2013, which stopped working after 3a839517ce, fixes #5379.

This was SVN commit r23382.
This commit is contained in:
Itms
2020-01-12 20:04:22 +00:00
parent ae6c6bdbeb
commit 601892a2bb
9 changed files with 16 additions and 97 deletions
+1 -16
View File
@@ -1,4 +1,4 @@
/* Copyright (C) 2015 Wildfire Games.
/* Copyright (C) 2020 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@@ -78,21 +78,6 @@ public:
m_Val.reset(new JS::PersistentRooted<T>(cx, val));
}
// TODO: Move assignment operator and move constructor only have to be
// explicitly defined for Visual Studio. VS2013 is still behind on C++11 support
// What's missing is what they call "Rvalue references v3.0", see
// https://msdn.microsoft.com/en-us/library/hh567368.aspx#rvref
DefPersistentRooted<T>& operator=(DefPersistentRooted<T>&& other)
{
m_Val = std::move(other.m_Val);
return *this;
}
DefPersistentRooted<T>(DefPersistentRooted<T>&& other)
{
m_Val = std::move(other.m_Val);
}
private:
std::unique_ptr<JS::PersistentRooted<T> > m_Val;
};