summaryrefslogtreecommitdiff
path: root/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'source/core')
-rw-r--r--source/core/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/list.h b/source/core/list.h
index b1461a260..5a94d8b83 100644
--- a/source/core/list.h
+++ b/source/core/list.h
@@ -381,7 +381,7 @@ namespace Slang
void Reverse()
{
- for (int i = 0; i < (_count >> 1); i++)
+ for (UInt i = 0; i < (_count >> 1); i++)
{
Swap(buffer, i, _count - i - 1);
}