summaryrefslogtreecommitdiffstats
path: root/source/core
diff options
context:
space:
mode:
authorSai Praveen Bangaru <31557731+saipraveenb25@users.noreply.github.com>2023-02-28 21:24:24 -0500
committerGitHub <noreply@github.com>2023-02-28 21:24:24 -0500
commit3c32dd951c5d69b5568929e0038e693553efca79 (patch)
tree377b4b921e82cfc201a768d88a70f12a16586614 /source/core
parent7eeda30df967671c410de4fd725f91f9078d74c4 (diff)
AD: Fixed do-while loops (#2683)
* WIP: Fix for do-while loops * Added a somewhat hacky fix for do-while loops * Redid the indexed region map builder step to fix issue with the nested loops test * rename * Used managed pointers
Diffstat (limited to 'source/core')
-rw-r--r--source/core/slang-dictionary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-dictionary.h b/source/core/slang-dictionary.h
index b11341051..e923832e5 100644
--- a/source/core/slang-dictionary.h
+++ b/source/core/slang-dictionary.h
@@ -450,7 +450,7 @@ namespace Slang
return dict->hashMap[pos.ObjectPosition].Value;
}
else
- SLANG_ASSERT_FAILURE("The key does not exists in dictionary.");
+ SLANG_ASSERT_FAILURE("The key does not exist in dictionary.");
}
inline TValue & operator()() const
{