| 1171 | |
| 1172 | template <class Ratio> |
| 1173 | std::string ratio_string<Ratio>::symbol() { |
| 1174 | Catch::ReusableStringStream rss; |
| 1175 | rss << '[' << Ratio::num << '/' |
| 1176 | << Ratio::den << ']'; |
| 1177 | return rss.str(); |
| 1178 | } |
| 1179 | template <> |
| 1180 | struct ratio_string<std::atto> { |
| 1181 | static std::string symbol(); |