From 403497eef90f5d94c5d716cc643ffcebe0db5080 Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Sat, 5 Feb 2005 21:16:28 +0000 Subject: [PATCH] removed return statement from function returning void [SVN r27150] --- include/boost/iostreams/detail/vc6/operations.hpp | 2 +- include/boost/iostreams/operations.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iostreams/detail/vc6/operations.hpp b/include/boost/iostreams/detail/vc6/operations.hpp index bdf5d38..2e2052b 100755 --- a/include/boost/iostreams/detail/vc6/operations.hpp +++ b/include/boost/iostreams/detail/vc6/operations.hpp @@ -65,7 +65,7 @@ read(T& t, Source& src, typename io_char::type* s, std::streamsize n) template void putback(T& t, typename io_char::type c) -{ return detail::read_impl::putback(detail::unwrap(t), c); } +{ detail::read_impl::putback(detail::unwrap(t), c); } template void put(T& t, typename io_char::type c) diff --git a/include/boost/iostreams/operations.hpp b/include/boost/iostreams/operations.hpp index da7cd61..3bbeac0 100755 --- a/include/boost/iostreams/operations.hpp +++ b/include/boost/iostreams/operations.hpp @@ -61,7 +61,7 @@ read(T& t, Source& src, typename io_char::type* s, std::streamsize n) template void putback(T& t, typename io_char::type c) -{ return detail::read_impl::putback(detail::unwrap(t), c); } +{ detail::read_impl::putback(detail::unwrap(t), c); } template void put(T& t, typename io_char::type c)