Fix for ambiguous overloaded function call (#16927)

* fix

* change type to unsigned long long
This commit is contained in:
Aleksandr Voron
2023-04-13 17:28:30 +02:00
committed by GitHub
parent 3461064507
commit 0426c645eb

View File

@@ -45,7 +45,7 @@ public:
timeAttribute = testCaseNode.append_attribute(timeAttributeName);
}
timeAttribute.set_value(time);
timeAttribute.set_value(static_cast<unsigned long long>(time));
}
uint64_t get_time(const std::string& nodeTypeName, const std::string& testCaseName) {