git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@303 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-05-01 15:11:24 +00:00
parent 73fadc7151
commit 103eed82cb

View file

@ -47,7 +47,7 @@ namespace detail3
inline std::ostream& operator<<( std::ostream& s, const sink& ) inline std::ostream& operator<<( std::ostream& s, const sink& )
{ {
return s << "?"; return s << '?';
} }
struct holder struct holder
@ -100,7 +100,7 @@ namespace detail3
template< typename S, typename T > template< typename S, typename T >
S& operator<<( S &s, const T& ) S& operator<<( S &s, const T& )
{ {
return s << "?"; return s << '?';
} }
} }