mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
042050ef67
Included sample benchmark for eminline for native and noasm Made GoogleTest compile only if tests are compiled
7 lines
136 B
C++
7 lines
136 B
C++
#include <chrono>
|
|
|
|
int main() {
|
|
typedef std::chrono::steady_clock Clock;
|
|
Clock::time_point tp = Clock::now();
|
|
((void)tp);
|
|
}
|