From 411ff42f20729200c0fc2e24a83bc1dcd7a42a51 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 13 Aug 2014 11:25:01 -0700 Subject: [PATCH] Hide ScopedTrace. (cherry-pick of f2c1e7ee78a167ff323b9f45d20532d064d6778d.) Bug: 11156955 (cherry picked from commit ebb6b4a4d3fab87800b912c9d6ea917f5359f8af) Change-Id: Ifc10364b35384a9f34e4c2c634dd78a16065a817 --- libc/private/bionic_systrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/private/bionic_systrace.h b/libc/private/bionic_systrace.h index ad9ff7f71..0b4560f92 100644 --- a/libc/private/bionic_systrace.h +++ b/libc/private/bionic_systrace.h @@ -23,7 +23,7 @@ // ScopedTrace("Trace message"); // The trace will end when the contructor goes out of scope. -class ScopedTrace { +class __LIBC_HIDDEN__ ScopedTrace { public: explicit ScopedTrace(const char* message); ~ScopedTrace();