OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
regex_fwd.hpp
1#pragma once
2#include <ossia/detail/std_fwd.hpp>
3
4OSSIA_STD_BEGIN_NAMESPACE_CXX11
5#if defined(_MSC_VER)
6template <typename T>
7class regex_traits;
8#else
9template <typename T>
10struct regex_traits;
11#endif
12
13template <typename T, typename Traits>
14class basic_regex;
15
16using regex = basic_regex<char, regex_traits<char>>;
17OSSIA_STD_END_NAMESPACE_CXX11
18
19#if defined(_MSC_VER)
20#if defined(NDEBUG)
21static const constexpr auto sizeof_regex = 40;
22#else
23static const constexpr auto sizeof_regex = 96;
24#endif
25#elif defined(_LIBCPP_VERSION)
26static const constexpr auto sizeof_regex = 64;
27#elif defined(__GLIBCXX__)
28static const constexpr auto sizeof_regex = 32;
29#else
30#include <regex>
31#define sizeof_regex sizeof(std::regex);
32#endif