简体   繁体   中英

Where can I find the GCC 9 implementation of std::chrono::system_clock::now()?

The chrono system header ( /usr/include/c++/9/chrono ) declares, but does not define, the static now() functions of its clocks. I also do not see an include that looks relevant. Where are these functions implemented?

Where are these functions implemented?

In your C++ standard library implementation.

GNU compiler is shipped with GNU C++ library - libstdc++ . Inside gcc source tree, you may find libstdc++-v3/chrono.cc file with the implementation of chrono::now() function.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM