summaryrefslogtreecommitdiff
path: root/lib/strings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strings.hpp')
-rw-r--r--lib/strings.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/strings.hpp b/lib/strings.hpp
deleted file mode 100644
index 9dca9ac..0000000
--- a/lib/strings.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include <GL/glew.h>
-
-constexpr auto
-constexpr_strlen(const GLchar * const s)
-{
- std::size_t ch {};
- while (s[ch]) {
- ch++;
- }
- return ch;
-}