summaryrefslogtreecommitdiff
path: root/boost/serialization/binary_object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/serialization/binary_object.hpp')
-rw-r--r--boost/serialization/binary_object.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/serialization/binary_object.hpp b/boost/serialization/binary_object.hpp
index 23c734be3d..5c9038e5a9 100644
--- a/boost/serialization/binary_object.hpp
+++ b/boost/serialization/binary_object.hpp
@@ -55,7 +55,7 @@ struct binary_object :
m_size = rhs.m_size;
return *this;
}
- binary_object(/* const */ void * const t, std::size_t size) :
+ binary_object(const void * const t, std::size_t size) :
m_t(t),
m_size(size)
{}
@@ -69,7 +69,7 @@ struct binary_object :
// wrappers follow the naming convention make_xxxxx
inline
const binary_object
-make_binary_object(/* const */ void * t, std::size_t size){
+make_binary_object(const void * t, std::size_t size){
return binary_object(t, size);
}