| 802 | struct StringMaker { |
| 803 | template <typename Fake = T> |
| 804 | static |
| 805 | typename std::enable_if<::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type |
| 806 | convert(const Fake& value) { |
| 807 | ReusableStringStream rss; |
| 808 | rss << value; |
| 809 | return rss.str(); |
| 810 | } |
| 811 | |
| 812 | template <typename Fake = T> |
| 813 | static |
nothing calls this directly
no test coverage detected