minor style fix

This commit is contained in:
Guenter Obiltschnig 2014-05-19 16:56:08 +02:00
parent c26eb63a5e
commit 33e41aab23

View File

@ -120,11 +120,13 @@ public:
} }
SharedPtr(C* ptr) SharedPtr(C* ptr)
try : try:
_pCounter(new RC), _ptr(ptr) _pCounter(new RC),
_ptr(ptr)
{ {
} }
catch (...) { catch (...)
{
delete ptr; delete ptr;
} }