[windows] remove various workarounds which were required for vs2013

This commit is contained in:
Shawn Hoffman
2015-03-16 16:46:57 -07:00
parent 30702c17b6
commit bea18eedc4
4 changed files with 2 additions and 50 deletions

View File

@ -56,11 +56,7 @@ public:
}
private:
// We are not using std::atomic_bool here because MSVC sucks as of VC++
// 2013 and does not implement the std::atomic_bool(bool) constructor.
//
// Re-evaluate next time we upgrade that piece of shit.
std::atomic<bool> m_val;
std::atomic_bool m_val;
};
} // namespace Common