summaryrefslogtreecommitdiff
path: root/cpp/object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/object.hpp')
-rw-r--r--cpp/object.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/cpp/object.hpp b/cpp/object.hpp
index 860b569..09ddb89 100644
--- a/cpp/object.hpp
+++ b/cpp/object.hpp
@@ -111,9 +111,6 @@ std::ostream& operator<< (std::ostream& s, const object o);
template <typename Stream, typename T>
-inline void pack(Stream& s, const T& v);
-
-template <typename Stream, typename T>
packer<Stream>& operator<< (packer<Stream>& o, const T& v);
template <typename T>
@@ -240,13 +237,6 @@ inline void pack(packer<Stream>& o, const T& v)
// obsolete
template <typename Stream, typename T>
-inline void pack(Stream& s, const T& v)
-{
- packer<Stream>(s).pack(v);
-}
-
-// obsolete
-template <typename Stream, typename T>
inline void pack_copy(packer<Stream>& o, T v)
{
pack(o, v);