Disable assertions in Release build mode

This commit is contained in:
Wojtek Figat
2023-06-19 13:59:04 +02:00
parent f952a392de
commit 9b0fdb2cbd
3 changed files with 4 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ namespace ALC
}
ASSERT(Contexts.HasItems());
#else
ASSERT(Contexts.Count() == 1)
ASSERT(Contexts.Count() == 1);
#endif
return Contexts[0];
}