Added Microsoft compilers under <utility> guard

This commit is contained in:
Jeffrey Walton 2015-07-31 01:14:31 -04:00
parent 2d82901165
commit f7600dbbec

View File

@ -28,8 +28,8 @@
#include <algorithm>
#include <functional>
// R-value references and std::move
#if defined(__cplusplus >= 201103L)
// Rvalue references and std::move
#if (__cplusplus >= 201103L) || (_MSC_VER >= 1600)
# include <utility>
#endif