Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30a3b92c authored by Steven Moreland's avatar Steven Moreland Committed by Gerrit Code Review
Browse files

Merge "libutils: Trace.h for everything but windows"

parents fc48a62d 1cb99ea5
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -17,7 +17,12 @@
#ifndef ANDROID_TRACE_H
#define ANDROID_TRACE_H

#if defined(__ANDROID__)
#if defined(_WIN32)

#define ATRACE_NAME(...)
#define ATRACE_CALL()

#else  // !_WIN32

#include <stdint.h>

@@ -51,11 +56,6 @@ private:

}  // namespace android

#else // !__ANDROID__

#define ATRACE_NAME(...)
#define ATRACE_CALL()

#endif // __ANDROID__
#endif  // _WIN32

#endif // ANDROID_TRACE_H