mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
coding style changes
This commit is contained in:
parent
edcd9fd2fb
commit
60f6d79469
@ -65,10 +65,10 @@ Exception& Exception::operator = (const Exception& exc)
|
||||
{
|
||||
if (&exc != this)
|
||||
{
|
||||
Exception *new_pNested = exc._pNested? exc._pNested->clone() : 0;
|
||||
Exception* newPNested = exc._pNested ? exc._pNested->clone() : 0;
|
||||
delete _pNested;
|
||||
_msg = exc._msg;
|
||||
_pNested = new_pNested;
|
||||
_pNested = newPNested;
|
||||
_code = exc._code;
|
||||
}
|
||||
return *this;
|
||||
|
Loading…
Reference in New Issue
Block a user