mirror of
https://github.com/boostorg/iostreams.git
synced 2026-02-27 05:02:29 +00:00
removed return statement from function returning void
[SVN r27150]
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user