Skip to content

Commit

Permalink
Use defective stlpatch_future.hpp only for VS2013 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasSchoenle authored and Kjell Hedström committed May 14, 2018
1 parent e8fe9d8 commit 7b0414f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/g3log/stlpatch_future.hpp
Expand Up @@ -14,7 +14,7 @@


#pragma once
#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(__MINGW32__)
#if (defined(WIN32) || defined(_WIN32) || defined(__WIN32__)) && !defined(__MINGW32__) && (_MSC_VER <= 1800)
namespace std {

template<class... _ArgTypes>
Expand Down

0 comments on commit 7b0414f

Please sign in to comment.