1// (C) Copyright Beman Dawes 2009 2 3// Use, modification and distribution are subject to the 4// Boost Software License, Version 1.0. (See accompanying file 5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 7// See http://www.boost.org/libs/config for more information. 8 9// MACRO: BOOST_NO_CXX11_HDR_RATIO 10// TITLE: C++0x header <ratio> unavailable 11// DESCRIPTION: The standard library does not supply C++0x header <ratio> 12 13#include <ratio> 14 15namespace boost_no_cxx11_hdr_ratio { 16 17int test() 18{ 19 using std::atto; 20 using std::femto; 21 using std::pico; 22 using std::nano; 23 using std::micro; 24 using std::milli; 25 using std::centi; 26 using std::deci; 27 using std::deca; 28 using std::hecto; 29 using std::kilo; 30 using std::mega; 31 using std::tera; 32 using std::peta; 33 using std::exa; 34 return 0; 35} 36 37} 38