From 034a1a865e6adf36758258790385d80c8d67c9f0 Mon Sep 17 00:00:00 2001 From: Zachary Michaels Date: Tue, 1 Jul 2014 11:56:41 -0400 Subject: [PATCH] Allow conditional compilation with VS 2013+ --- tests/io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/io.h b/tests/io.h index 64f2bae7..e3efa62c 100644 --- a/tests/io.h +++ b/tests/io.h @@ -80,7 +80,7 @@ inline void get(std::istream &input, std::vector &res) { } } -#if !defined(_MSC_VER) +#if !defined(_MSC_VER) || _MSC_VER >= 1800 template typename std::enable_if<(sizeof...(TT) > 0), void>::type