mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Core: Convert Pair/KeyValue to constexpr
This commit is contained in:
parent
5e27318b6c
commit
5538850d87
8 changed files with 51 additions and 65 deletions
|
|
@ -77,8 +77,8 @@ class OS {
|
|||
// For tracking benchmark data
|
||||
bool use_benchmark = false;
|
||||
String benchmark_file;
|
||||
HashMap<Pair<String, String>, uint64_t, PairHash<String, String>> benchmark_marks_from;
|
||||
HashMap<Pair<String, String>, double, PairHash<String, String>> benchmark_marks_final;
|
||||
HashMap<Pair<String, String>, uint64_t> benchmark_marks_from;
|
||||
HashMap<Pair<String, String>, double> benchmark_marks_final;
|
||||
|
||||
protected:
|
||||
void _set_logger(CompositeLogger *p_logger);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue