summaryrefslogtreecommitdiffstats
path: root/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'source/core')
-rw-r--r--source/core/slang-list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-list.h b/source/core/slang-list.h
index 250b6dc49..c0fe28937 100644
--- a/source/core/slang-list.h
+++ b/source/core/slang-list.h
@@ -570,7 +570,7 @@ namespace Slang
}
template<typename T2>
- int binarySearch(const T2& obj)
+ Index binarySearch(const T2& obj)
{
return binarySearch(obj,
[](T & curObj, const T2 & thatObj)->int