aboutsummaryrefslogtreecommitdiffstats
path: root/attr/string.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:50:47 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:50:47 -0400
commitcd96a31b3ea11edf26512c33ca599258601c31a0 (patch)
treed5cfbb9b3c936f36a4d30f9b8024e3ef7e27bcd7 /attr/string.hpp
parent00f84e3b984904e36cbee502a470003ecd7d09cf (diff)
move library to a folder
Diffstat (limited to 'attr/string.hpp')
-rw-r--r--attr/string.hpp24
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
-