build: Treat warnings as errors (#923)
* squash and rebase andronov-alexey:treat_warnings_as_errors from pull request #850 * fix remaining warnings in java lib
This commit is contained in:
@@ -119,12 +119,12 @@ void Tracer::printTraces()
|
||||
if (p.second)
|
||||
{
|
||||
acc->event = event.get();
|
||||
acc->time = event->time;
|
||||
acc->time = static_cast<float>(event->time);
|
||||
acc->count = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
acc->time += event->time;
|
||||
acc->time += static_cast<float>(event->time);
|
||||
acc->count++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user