From 8db6a3ff3f2fa294b6dcec9620c2e4f2f63bfb4e Mon Sep 17 00:00:00 2001 From: Eric Friedman Date: Sun, 14 Sep 2003 03:48:52 +0000 Subject: [PATCH] Minor fix and addition. [SVN r20048] --- include/boost/variant/recursive_wrapper.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/boost/variant/recursive_wrapper.hpp b/include/boost/variant/recursive_wrapper.hpp index dc4a4be..a739ec2 100644 --- a/include/boost/variant/recursive_wrapper.hpp +++ b/include/boost/variant/recursive_wrapper.hpp @@ -27,10 +27,15 @@ namespace boost { // // See docs and recursive_wrapper_fwd.hpp for more information. // + template class recursive_wrapper { -public: // representation +public: // typedefs + + typedef T type; + +private: // representation T* p_;