We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b094dc3 commit d569899Copy full SHA for d569899
Engine/script/cc_instance.cpp
@@ -176,7 +176,7 @@ struct FunctionCallStack
176
{
177
FunctionCallStack(size_t initial_count = 16)
178
179
- initial_count = std::max(1u, initial_count);
+ initial_count = std::max<size_t>(1u, initial_count);
180
_entries.resize(initial_count);
181
_head = _entries.data() + initial_count;
182
}
0 commit comments