2
0
mirror of https://github.com/boostorg/ratio.git synced 2026-02-24 04:12:19 +00:00

Ratio: merge from trunk

[SVN r80406]
This commit is contained in:
Vicente J. Botet Escriba
2012-09-05 11:03:16 +00:00
parent 1f88e2c150
commit 6257cb379d
32 changed files with 1761 additions and 638 deletions

View File

@@ -19,21 +19,21 @@ int main()
using namespace std;
using namespace boost;
cout << "ratio_string<deca, char>::long_name() = "
<< ratio_string<boost::deca, char>::long_name() << '\n';
cout << "ratio_string<deca, char>::short_name() = "
<< ratio_string<boost::deca, char>::short_name() << '\n';
cout << "ratio_string<deca, char>::prefix() = "
<< ratio_string<boost::deca, char>::prefix() << '\n';
cout << "ratio_string<deca, char>::symbol() = "
<< ratio_string<boost::deca, char>::symbol() << '\n';
cout << "ratio_string<giga, char>::long_name() = "
<< ratio_string<boost::giga, char>::long_name() << '\n';
cout << "ratio_string<giga, char>::short_name() = "
<< ratio_string<boost::giga, char>::short_name() << '\n';
cout << "ratio_string<giga, char>::prefix() = "
<< ratio_string<boost::giga, char>::prefix() << '\n';
cout << "ratio_string<giga, char>::symbol() = "
<< ratio_string<boost::giga, char>::symbol() << '\n';
cout << "ratio_string<ratio<4, 6>, char>::prefix() = "
<< ratio_string<boost::ratio<4, 6>, char>::prefix() << '\n';
cout << "ratio_string<ratio<4, 6>, char>::symbol() = "
<< ratio_string<boost::ratio<4, 6>, char>::symbol() << '\n';
cout << "ratio_string<ratio<4, 6>, char>::long_name() = "
<< ratio_string<boost::ratio<4, 6>, char>::long_name() << '\n';
cout << "ratio_string<ratio<4, 6>, char>::short_name() = "
<< ratio_string<boost::ratio<4, 6>, char>::short_name() << '\n';
return 0;
}