Pomme/src/CompilerSupport/span.h

9 lines
205 B
C
Raw Normal View History

2020-11-11 20:06:52 +00:00
#pragma once
#if defined(__cplusplus) && __cplusplus >= 201703L && defined(__has_include) && __has_include(<span>)
#include <span>
#else
#include "CompilerSupport/span_implementation.hpp"
#endif