Use statistics_lite in profiler by default

This commit is contained in:
Nikita Lisitsa 2024-06-03 18:15:52 +03:00
parent ad36acf238
commit 47b772a432

View file

@ -21,7 +21,7 @@ namespace psemek::prof
profiler_tree * parent = nullptr; profiler_tree * parent = nullptr;
std::mutex * mutex = nullptr; std::mutex * mutex = nullptr;
util::statistics<double> execution_time; util::statistics_lite<double> execution_time;
std::map<std::string, profiler_tree> children; std::map<std::string, profiler_tree> children;
std::vector<std::map<std::string, profiler_tree>::iterator> children_list; std::vector<std::map<std::string, profiler_tree>::iterator> children_list;