How can I find out what type the compiler deduced when using the auto keyword?
auto
Example 1: Simpler
auto tickTime = 0.001;
W
As Daniel Jour said, read the error message:
... _Tp = std::chrono::time_point< std::chrono::_V2::system_clock, std::chrono::duration< double, std::ratio<1l, 1000000000l> > > ...