Fixes toString forward reference issue:

- as raised in https://github.com/philsquared/Catch/pull/195
This commit is contained in:
Phil Nash
2013-09-14 19:58:45 +01:00
parent f7378eebb6
commit 1e2f1d1603
10 changed files with 18 additions and 9 deletions

View File

@@ -80,6 +80,9 @@ namespace Detail {
} // end namespace Detail
template<typename T>
std::string toString( T const& value );
template<typename T>
struct StringMaker :
Detail::StringMakerBase<Detail::IsStreamInsertable<T>::value> {};