mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-01 18:31:45 +02:00
Reformat code
This commit is contained in:
parent
1fcb8b4fc2
commit
5cc37f98f4
8 changed files with 293 additions and 315 deletions
|
@ -38,11 +38,11 @@
|
|||
#include <fstream>
|
||||
#include <functional>
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <map>
|
||||
#include <thread>
|
||||
#include <sstream>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
#ifdef __ANDROID__
|
||||
|
@ -109,9 +109,10 @@
|
|||
#define TIMESTAMP AixLog::Timestamp(std::chrono::system_clock::now())
|
||||
|
||||
|
||||
// stijnvdb: sorry! :) LOG(SEV, "tag") was not working for Windows and I couldn't figure out how to fix it for windows without potentially breaking everything else...
|
||||
// stijnvdb: sorry! :) LOG(SEV, "tag") was not working for Windows and I couldn't figure out how to fix it for windows without potentially breaking everything
|
||||
// else...
|
||||
// https://stackoverflow.com/questions/3046889/optional-parameters-with-c-macros (Jason Deng)
|
||||
#ifdef WIN32
|
||||
#ifdef WIN32
|
||||
#define LOG_2(severity, tag) AIXLOG_INTERNAL__LOG_SEVERITY_TAG(severity, tag)
|
||||
#define LOG_1(severity) AIXLOG_INTERNAL__LOG_SEVERITY(severity)
|
||||
#define LOG_0() LOG_1(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue