mirror of
https://github.com/boostorg/cmake.git
synced 2026-01-19 16:12:15 +00:00
14 lines
375 B
C++
14 lines
375 B
C++
// Copyright 2019, 2024 Peter Dimov
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <boost/timer/timer.hpp>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/make_shared.hpp>
|
|
|
|
int main()
|
|
{
|
|
boost::shared_ptr<boost::timer::cpu_timer> timer = boost::make_shared<boost::timer::cpu_timer>();
|
|
timer->stop();
|
|
}
|