Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CheckOptions:
- key: readability-identifier-length.MinimumLoopCounterNameLength
value: 1
- key: readability-identifier-length.IgnoredVariableNames
value: "^[defijkptuvw]$"
value: "^[_defijkptuvw]$"
# More options here: https://clang.llvm.org/extra/clang-tidy/checks/readability/identifier-naming.html
- key: readability-identifier-naming.NamespaceCase
value: lower_case
Expand Down
3 changes: 3 additions & 0 deletions include/geode/basic/string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

namespace geode
{
inline constexpr char EOL{ '\n' };
inline constexpr char SPACE{ ' ' };

[[nodiscard]] std::vector< std::string_view >
opengeode_basic_api string_split( std::string_view string );

Expand Down
Loading