From 3c32dd951c5d69b5568929e0038e693553efca79 Mon Sep 17 00:00:00 2001 From: Sai Praveen Bangaru <31557731+saipraveenb25@users.noreply.github.com> Date: Tue, 28 Feb 2023 21:24:24 -0500 Subject: 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 --- source/core/slang-dictionary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/core') 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 { -- cgit v1.2.3