Fix formatting of new(std::nothrow)
The code previously formatted everything as `new( std::nothrow)`.
This commit is contained in:
@ -487,7 +487,7 @@ bool Worker::execute(function<void ()> func, mxb::Semaphore* pSem, execute_mode_
|
||||
};
|
||||
|
||||
bool rval = false;
|
||||
CustomTask* task = new( std::nothrow) CustomTask(func);
|
||||
CustomTask* task = new(std::nothrow) CustomTask(func);
|
||||
|
||||
if (task)
|
||||
{
|
||||
|
Reference in New Issue
Block a user