diff options
| author | Stefan Boberg <[email protected]> | 2022-06-10 15:59:08 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-10 15:59:08 +0200 |
| commit | 4e50d60d64249e3d0b5514937261d1aa2207861d (patch) | |
| tree | 1bfb8625e0f1c6e977bd0122317771207ec6bcd2 /zencore/include | |
| parent | extended zen print command to also handle CbPackage and CompressedBuffer form... (diff) | |
| download | zen-4e50d60d64249e3d0b5514937261d1aa2207861d.tar.xz zen-4e50d60d64249e3d0b5514937261d1aa2207861d.zip | |
namespace/bucket validation now uses AsciiSet for more efficient validation (#127)
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/string.h b/zencore/include/zencore/string.h index 92f567dae..7ea8c029f 100644 --- a/zencore/include/zencore/string.h +++ b/zencore/include/zencore/string.h @@ -933,7 +933,7 @@ public: return *Skip(Str, Set) == '\0'; } - ////////// Algorithms for string types like FStringView and FString ////////// + ////////// Algorithms for string types like std::string_view and std::string ////////// /** Get initial substring with all characters in set */ template<class StringType> |