Skip to content

Commit d569899

Browse files
committed
Engine: fix x64 build after recent changes
1 parent b094dc3 commit d569899

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Engine/script/cc_instance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ struct FunctionCallStack
176176
{
177177
FunctionCallStack(size_t initial_count = 16)
178178
{
179-
initial_count = std::max(1u, initial_count);
179+
initial_count = std::max<size_t>(1u, initial_count);
180180
_entries.resize(initial_count);
181181
_head = _entries.data() + initial_count;
182182
}

0 commit comments

Comments
 (0)