1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

replace boost::chrono with std::chrono

This commit is contained in:
Andrey Filipenkov
2021-11-23 09:41:03 +03:00
parent a65feb29f5
commit fc064b1c45
6 changed files with 14 additions and 12 deletions

View File

@@ -178,7 +178,7 @@ bool ObjectClusterizer::shouldVisitObject(const CGObjectInstance * obj) const
void ObjectClusterizer::clusterize()
{
auto start = boost::chrono::high_resolution_clock::now();
auto start = std::chrono::high_resolution_clock::now();
nearObjects.reset();
farObjects.reset();
@@ -349,4 +349,4 @@ void ObjectClusterizer::clusterize()
}
logAi->trace("Clusterization complete in %ld", timeElapsed(start));
}
}