Исправлено условие для подключения <span>
This commit is contained in:
Submodule cmake/cmlib updated: c6414bbc03...63c433a82e
@ -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_
|
||||
|
Reference in New Issue
Block a user