From 5abee6a0a30c7c965138ec7286b7f1b21b201731 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 25 Apr 2023 12:25:52 -0400 Subject: StringBuilder to lowerCamel (#2840) * #include an absolute path didn't work - because paths were taken to always be relative. * WIP lowerCamel Dictionary. * WIP more lowerCamel fixes for Dictionary. * Add/Remove/Clear * GetValue/Contains * Fix tabs in dictionary. Count -> getCount * Fix fields with caps. * Key -> key Value -> value Use m_ for members where appropriate. Use lowerCamel in linked list. * Some small fixes/improvements to Dictionary. * Kick CI. * Small tidy on String. * Append -> append * ToString -> toString ProduceString -> produceString * Small fixes. * StringToXXX -> stringToXXX * Fix typo introduced by Append -> append. * Made intToAscii do reversal at the end. --------- Co-authored-by: Yong He --- tools/test-process/test-process-main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/test-process/test-process-main.cpp') diff --git a/tools/test-process/test-process-main.cpp b/tools/test-process/test-process-main.cpp index 852b58cef..e1ff3c8a7 100644 --- a/tools/test-process/test-process-main.cpp +++ b/tools/test-process/test-process-main.cpp @@ -33,7 +33,7 @@ static SlangResult _outputCount(int argc, const char* const* argv) return SLANG_FAIL; } // Get the count - const Index count = StringToInt(argv[2]); + const Index count = stringToInt(argv[2]); // If we want to crash Index crashIndex = -1; @@ -41,7 +41,7 @@ static SlangResult _outputCount(int argc, const char* const* argv) { // When we crash, we want to make sure everything is flushed... _makeStdStreamsUnbuffered(); - crashIndex = StringToInt(argv[3]); + crashIndex = stringToInt(argv[3]); } FILE* fileOut = stdout; -- cgit v1.2.3