OpenTTD Source
20241108-master-g80f628063a
|
#include <debug.h>
Data Structures | |
struct | State |
Persistent state for TicToc profiling. More... | |
Public Member Functions | |
TicToc (State &state) | |
Data Fields | |
State & | state |
std::chrono::high_resolution_clock::time_point | chrono_start |
real time count. | |
TicToc profiling.
Usage: static TicToc::State state("A name", 1); TicToc tt(state); –Do your code–