mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 21:22:44 +02:00
fix build error on linux
This commit is contained in:
parent
b56a15b60a
commit
522403cf48
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ void TraceTests::testTraceSerialization() {
|
|||
auto start = usecTimestampNow();
|
||||
PROFILE_RANGE(test, "TestEvent")
|
||||
for (size_t i = 0; i < 10000; ++i) {
|
||||
SAMPLE_PROFILE_COUNTER(0.1f, test, "TestCounter", { { "i", i } })
|
||||
SAMPLE_PROFILE_COUNTER(0.1f, test, "TestCounter", { { "i", (int)i } })
|
||||
}
|
||||
auto duration = usecTimestampNow() - start;
|
||||
duration /= USECS_PER_MSEC;
|
||||
|
|
Loading…
Reference in a new issue