(clang format) fix indent and make (rarely) accessor/setters in class on a single line

This commit is contained in:
Benjamin Sergeant
2019-05-31 00:53:14 -07:00
parent 285386e47f
commit ba4a9e1586
5 changed files with 12 additions and 45 deletions

View File

@ -9,10 +9,7 @@ namespace ix
using LogFunc = std::function<void(const char*)>;
static void Log(const char* msg);
static void setLogFunction(LogFunc& func)
{
_currentLogger = func;
}
static void setLogFunction(LogFunc& func) { _currentLogger = func; }
private:
static LogFunc _currentLogger;