1 // Copyright 2017 Peter Dimov. 2 // 3 // Distributed under the Boost Software License, Version 1.0. 4 // 5 // Check that using Chrono and Timer in the same program does 6 // not cause link errors. 7 8 9 #include <boost/chrono.hpp> 10 #include <boost/timer/timer.hpp> 11 main()12int main() 13 { 14 boost::chrono::steady_clock::now(); 15 boost::timer::cpu_timer cpt; 16 } 17