| 2067 | |
| 2068 | template <class Ratio> |
| 2069 | std::string ratio_string<Ratio>::symbol() { |
| 2070 | Catch::ReusableStringStream rss; |
| 2071 | rss << '[' << Ratio::num << '/' |
| 2072 | << Ratio::den << ']'; |
| 2073 | return rss.str(); |
| 2074 | } |
| 2075 | template <> |
| 2076 | struct ratio_string<std::atto> { |
| 2077 | static std::string symbol(); |
no test coverage detected