minor style fix

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

View File

@ -121,10 +121,12 @@ public:
SharedPtr(C* ptr)
try:
_pCounter(new RC), _ptr(ptr)
_pCounter(new RC),
_ptr(ptr)
{
}
catch (...) {
catch (...)
{
delete ptr;
}