mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Allow conditional compilation with VS 2013+
This commit is contained in:
parent
a633c11cbb
commit
034a1a865e
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
template<typename T, typename... TT>
|
||||||
typename std::enable_if<(sizeof...(TT) > 0), void>::type
|
typename std::enable_if<(sizeof...(TT) > 0), void>::type
|
||||||
|
|
Loading…
Reference in a new issue