From faf2094f2511a5322d68d2352f244b5bc89d5fee Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Tue, 20 May 2025 17:42:26 +0200 Subject: [PATCH] doc: Remove note about removed ParsePrechecks --- doc/developer-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/developer-notes.md b/doc/developer-notes.md index e577da05b63..18d8388a7ea 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -1028,7 +1028,7 @@ Strings and formatting - In cases where you do call `.c_str()`, you might want to additionally check that the string does not contain embedded '\0' characters, because it will (necessarily) truncate the string. This might be used to hide parts of the string from logging or to circumvent checks. If a use of strings is sensitive to this, take care to check the string for embedded NULL characters first - and reject it if there are any (see `ParsePrechecks` in `strencodings.cpp` for an example). + and reject it if there are any. Shadowing --------------