diff options
Diffstat (limited to 'attr/string.hpp')
-rw-r--r-- | attr/string.hpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/attr/string.hpp b/attr/string.hpp deleted file mode 100644 index d7e1fcb..0000000 --- a/attr/string.hpp +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef MBUOY_ATTR_STRING_HPP -#define MBUOY_ATTR_STRING_HPP - -namespace mbuoy { - -template<int N> -struct string -{ - consteval string(const char (&s_)[N]) { - for (int i = 0; i < N; ++i) - s[i] = s_[i]; - } - - consteval operator const char *() const { - return s; - } - - char s[N]; -}; - -} // namespace mbuoy - -#endif // MBUOY_ATTR_STRING_HPP - |