Fix formatting of new(std::nothrow)
The code previously formatted everything as `new( std::nothrow)`.
This commit is contained in:
@ -152,7 +152,7 @@ MessageQueue* MessageQueue::create(Handler* pHandler)
|
||||
mxb_strerror(errno));
|
||||
}
|
||||
#endif
|
||||
pThis = new( std::nothrow) MessageQueue(pHandler, read_fd, write_fd);
|
||||
pThis = new(std::nothrow) MessageQueue(pHandler, read_fd, write_fd);
|
||||
|
||||
if (!pThis)
|
||||
{
|
||||
|
Reference in New Issue
Block a user