diff options
| author | Christoph Mallon | 2011-08-06 13:22:52 +0200 | 
|---|---|---|
| committer | Christoph Mallon | 2011-08-07 15:19:08 +0200 | 
| commit | 2f23ff72c1d804d9d0e3ac09c46f52fd6b23a68c (patch) | |
| tree | 24dddbb6d06e7ba804f2376dad8436e640b388ff | |
| parent | c21f87836e9f292c8d6589ece03f6ccdc40dafc5 (diff) | |
| download | scummvm-rg350-2f23ff72c1d804d9d0e3ac09c46f52fd6b23a68c.tar.gz scummvm-rg350-2f23ff72c1d804d9d0e3ac09c46f52fd6b23a68c.tar.bz2 scummvm-rg350-2f23ff72c1d804d9d0e3ac09c46f52fd6b23a68c.zip | |
COMMON: Remove implicit conversion from ScopedPtr<T> to T*.
| -rw-r--r-- | common/ptr.h | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/common/ptr.h b/common/ptr.h index c97d7a4783..d06a25edb8 100644 --- a/common/ptr.h +++ b/common/ptr.h @@ -231,7 +231,6 @@ public:  	ReferenceType operator*() const { return *_pointer; }  	PointerType operator->() const { return _pointer; } -	operator PointerType() const { return _pointer; }  	/**  	 * Implicit conversion operator to bool for convenience, to make | 
