diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-07-01 11:56:41 -0400 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2014-07-01 14:57:27 -0400 |
commit | 034a1a865e6adf36758258790385d80c8d67c9f0 (patch) | |
tree | a2eb05415e82223da71b5a5490e5b60cff708e65 /tests | |
parent | Remove unused function (diff) | |
download | monero-034a1a865e6adf36758258790385d80c8d67c9f0.tar.xz |
Allow conditional compilation with VS 2013+
Diffstat (limited to 'tests')
-rw-r--r-- | tests/io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/io.h b/tests/io.h index 64f2bae77..e3efa62ca 100644 --- a/tests/io.h +++ b/tests/io.h @@ -80,7 +80,7 @@ inline void get(std::istream &input, std::vector<char> &res) { } } -#if !defined(_MSC_VER) +#if !defined(_MSC_VER) || _MSC_VER >= 1800 template<typename T, typename... TT> typename std::enable_if<(sizeof...(TT) > 0), void>::type |