Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65525 - sandbox/chrono/libs/chrono/example
From: vicente.botet_at_[hidden]
Date: 2010-09-21 17:47:54


Author: viboes
Date: 2010-09-21 17:47:51 EDT (Tue, 21 Sep 2010)
New Revision: 65525
URL: http://svn.boost.org/trac/boost/changeset/65525

Log:
Chrono fix warning
Text files modified:
   sandbox/chrono/libs/chrono/example/io_ex1.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/chrono/libs/chrono/example/io_ex1.cpp
==============================================================================
--- sandbox/chrono/libs/chrono/example/io_ex1.cpp (original)
+++ sandbox/chrono/libs/chrono/example/io_ex1.cpp 2010-09-21 17:47:51 EDT (Tue, 21 Sep 2010)
@@ -27,7 +27,7 @@
     cout << "hours(3) + minutes(10) = "
          << hours(3) + minutes(10) << '\n';
 
- typedef duration<long long, ratio<1, 2500000000> > ClockTick;
+ typedef duration<long long, ratio<1, 2500000000ULL> > ClockTick;
     cout << "ClockTick(3) + nanoseconds(10) = "
          << ClockTick(3) + nanoseconds(10) << '\n';
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk