From f7600dbbec5b3fb278fc8e04f9f8a4da79955f04 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 31 Jul 2015 01:14:31 -0400 Subject: [PATCH] Added Microsoft compilers under guard --- stdcpp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdcpp.h b/stdcpp.h index 2d149592..bf23df42 100644 --- a/stdcpp.h +++ b/stdcpp.h @@ -28,8 +28,8 @@ #include #include -// R-value references and std::move -#if defined(__cplusplus >= 201103L) +// Rvalue references and std::move +#if (__cplusplus >= 201103L) || (_MSC_VER >= 1600) # include #endif