| 2037 | |
| 2038 | template <class Ratio> |
| 2039 | std::string ratio_string<Ratio>::symbol() { |
| 2040 | Catch::ReusableStringStream rss; |
| 2041 | rss << '[' << Ratio::num << '/' |
| 2042 | << Ratio::den << ']'; |
| 2043 | return rss.str(); |
| 2044 | } |
| 2045 | template <> |
| 2046 | struct ratio_string<std::atto> { |
| 2047 | static std::string symbol(); |