refactor(Core/Common): alphabetical sorting inlcudes (#6282)

- Part https://github.com/WarheadCore/WarheadBand/pull/37
This commit is contained in:
Kargatum 2021-06-23 06:01:53 +07:00 committed by GitHub
parent b2472caeed
commit 8202da358b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 109 additions and 109 deletions

View file

@ -4,8 +4,8 @@
*/
#include "LogOperation.h"
#include "Logger.h"
#include "LogMessage.h"
#include "Logger.h"
LogOperation::LogOperation(Logger const* _logger, std::unique_ptr<LogMessage>&& _msg) : logger(_logger), msg(std::forward<std::unique_ptr<LogMessage>>(_msg))
{