Codechange: add documentation for core string helpers

This commit is contained in:
Rubidium
2026-02-15 10:16:41 +01:00
committed by rubidium42
parent 72e4955a09
commit ce676a6300
6 changed files with 145 additions and 14 deletions
+4
View File
@@ -26,6 +26,10 @@
/* static */ const std::string_view StringConsumer::WHITESPACE_NO_NEWLINE = "\t\v\f\r ";
/* static */ const std::string_view StringConsumer::WHITESPACE_OR_NEWLINE = "\t\n\v\f\r ";
/**
* Log an error in the processing (too small buffer, integer out of range, etc.).
* @param msg The message to log.
*/
/* static */ void StringConsumer::LogError(std::string &&msg)
{
#if defined(STRGEN) || defined(SETTINGSGEN)