- More Documentation
- Vulkan Configuration Implementations - Fixed build errors on GCC and Clang
This commit is contained in:
@@ -105,7 +105,7 @@ inline void fennec_test_threading_run_test_mpscq(array<thread, ThreadsV>& thread
|
||||
|
||||
template<typename ReturnT, typename...ParamsT, typename...ArgsT>
|
||||
inline double fennec_test_threading_timed(ReturnT (func)(ParamsT...), ArgsT&&...args) {
|
||||
auto start = std::chrono::high_resolution_clock::now();
|
||||
const auto start = std::chrono::high_resolution_clock::now();
|
||||
func(fennec::forward<ArgsT>(args)...);
|
||||
return std::chrono::duration<double>(std::chrono::high_resolution_clock::now() - start).count();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user