removed return statement from function returning void

[SVN r27150]
This commit is contained in:
Jonathan Turkanis
2005-02-05 21:16:28 +00:00
parent aa441800fc
commit 403497eef9
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ read(T& t, Source& src, typename io_char<T>::type* s, std::streamsize n)
template<typename T>
void putback(T& t, typename io_char<T>::type c)
{ return detail::read_impl<T>::putback(detail::unwrap(t), c); }
{ detail::read_impl<T>::putback(detail::unwrap(t), c); }
template<typename T>
void put(T& t, typename io_char<T>::type c)

View File

@@ -61,7 +61,7 @@ read(T& t, Source& src, typename io_char<T>::type* s, std::streamsize n)
template<typename T>
void putback(T& t, typename io_char<T>::type c)
{ return detail::read_impl<T>::putback(detail::unwrap(t), c); }
{ detail::read_impl<T>::putback(detail::unwrap(t), c); }
template<typename T>
void put(T& t, typename io_char<T>::type c)