diff --git a/ref.html b/ref.html index 45c190e..55f5f1f 100644 --- a/ref.html +++ b/ref.html @@ -91,6 +91,7 @@ public: operator T & () const; T & get() const; + T* get_pointer() const; };
++ Returns: a pointer to the stored object. +
++ Throws: Nothing. +
+
template<class T> reference_wrapper<T> ref(T & t);