Исправлено условие для подключения <span>

This commit is contained in:
Andrei Astafev 2021-05-30 21:14:34 +03:00
parent 4024029944
commit d1fbeb9400
2 changed files with 7 additions and 3 deletions

@ -1 +1 @@
Subproject commit c6414bbc03c924379ceb7c7d7c914f4853e5d528
Subproject commit 63c433a82e51e90796a74bd58939c5e879e7bcd6

View File

@ -12,7 +12,11 @@
#pragma once
#if ( __cplusplus >= 201103L ) && ( __cplusplus < 201703L )
#if ( __cplusplus > 201703L )
#include <span>
#else
#include <myx/backports/cpp/helpers.hpp>
@ -222,6 +226,6 @@ public:
} // namespace std
#endif // if ( __cplusplus >= 201103L ) && ( __cplusplus < 201703L )
#endif // if ( __cplusplus > 201703L )
#endif // ifndef MYX_BACKPORTS_CPP_SPAN_HPP_