Fixed line too long

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@678 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2013-07-09 10:05:02 +00:00
parent 808af17eb8
commit dfa375f8c9

View file

@ -139,8 +139,8 @@ namespace detail
{ {
return s << mock::format( t.lock() ); return s << mock::format( t.lock() );
} }
template< typename T, typename Deleter > template< typename T, typename D >
inline stream& operator<<( stream& s, const std::unique_ptr< T, Deleter >& p ) inline stream& operator<<( stream& s, const std::unique_ptr< T, D >& p )
{ {
return s << mock::format( p.get() ); return s << mock::format( p.get() );
} }