diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 09:13:17 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-12-06 11:20:01 +0200 |
commit | 44fba3192ad2401f33cccbe5d8ac88e3cf86b6f9 (patch) | |
tree | 0dbb7968280a875908daa925e68084830b3afdbc /tests/strcase | |
parent | 794805e4c30e30f26286ac0c2d6a513d2391d38e (diff) |
Rename some ucase(), lcase(), and sanitize_identifier() overloads to their make_*() variantsHEADmaster
Diffstat (limited to 'tests/strcase')
-rw-r--r-- | tests/strcase/driver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/strcase/driver.cxx b/tests/strcase/driver.cxx index 8e964a6..2d1ca6f 100644 --- a/tests/strcase/driver.cxx +++ b/tests/strcase/driver.cxx @@ -61,9 +61,9 @@ main () assert (lcase ("") == string ()); string s (upper); - assert (lcase (s) == lower); + assert (make_lcase (s) == lower); s = lower; - ucase (const_cast<char*> (s.data ()), s.size ()); + make_ucase (const_cast<char*> (s.data ()), s.size ()); assert (s == upper); } |