mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2026-09-03 18:14:28 +03:00
Use int64_t instead of long for int64 TypedArray (#97)
Fixes compile issues on macOS / clang.
This commit is contained in:
@@ -38,7 +38,7 @@ void CPPBenchmarkArray::benchmark_int32_array() {
|
||||
}
|
||||
|
||||
void CPPBenchmarkArray::benchmark_int64_array() {
|
||||
TypedArray<long> array;
|
||||
TypedArray<int64_t> array;
|
||||
|
||||
for(int i = 0; i < iterations; i++)
|
||||
array.push_back(i);
|
||||
|
||||
Reference in New Issue
Block a user