summaryrefslogtreecommitdiff
path: root/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'source/core')
-rw-r--r--source/core/list.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/core/list.h b/source/core/list.h
index af32a39ef..b1461a260 100644
--- a/source/core/list.h
+++ b/source/core/list.h
@@ -487,7 +487,7 @@ namespace Slang
if (predicate(buffer[i]))
return i;
}
- return -1;
+ return (UInt)-1;
}
template<typename Func>
@@ -498,7 +498,7 @@ namespace Slang
if (predicate(buffer[i-1]))
return i-1;
}
- return -1;
+ return (UInt)-1;
}
template<typename T2>
@@ -509,7 +509,7 @@ namespace Slang
if (buffer[i] == val)
return i;
}
- return -1;
+ return (UInt)-1;
}
template<typename T2>
@@ -520,7 +520,7 @@ namespace Slang
if(buffer[i-1] == val)
return i-1;
}
- return -1;
+ return (UInt)-1;
}
void Sort()