diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-30 13:36:18 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-30 13:36:18 +0100 |
commit | 57f4e225d10c73bbefa276f01d37b13c4138e245 (patch) | |
tree | 0d357140507e311c63b7dae8ce62864a6629b3e7 /lib/strings.h | |
parent | Reformat with new clang-format 16 (diff) | |
download | ilt-57f4e225d10c73bbefa276f01d37b13c4138e245.tar.bz2 ilt-57f4e225d10c73bbefa276f01d37b13c4138e245.tar.xz ilt-57f4e225d10c73bbefa276f01d37b13c4138e245.zip |
Rename strings.h to something that won't conflict with a system header
Diffstat (limited to 'lib/strings.h')
-rw-r--r-- | lib/strings.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/strings.h b/lib/strings.h deleted file mode 100644 index 9dca9ac..0000000 --- a/lib/strings.h +++ /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; -} |