Merge pull request #613 from tlanc007/C.33_610

C.33_610: changed owner<T>* to owner<T*> per issue 610
This commit is contained in:
Gabriel Dos Reis
2016-08-22 11:39:31 -07:00
committed by GitHub

View File

@@ -4177,7 +4177,7 @@ The default copy operation will just copy the `p1.p` into `p2.p` leading to a do
template<typename T> template<typename T>
class Smart_ptr3 { class Smart_ptr3 {
owner<T>* p; // OK: explicit about ownership of *p owner<T*> p; // OK: explicit about ownership of *p
// ... // ...
public: public:
// ... // ...