diff options
author | Dan Albert <danalbert@google.com> | 2014-08-13 11:25:01 -0700 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-08-13 11:25:01 -0700 |
commit | f2c1e7ee78a167ff323b9f45d20532d064d6778d (patch) | |
tree | 05484cac9bd366891a5a1e53197c07b2c27d2e6f /libc | |
parent | 6e3823d37e54929558990d7c475bc30d381098fe (diff) | |
download | android_bionic-f2c1e7ee78a167ff323b9f45d20532d064d6778d.tar.gz android_bionic-f2c1e7ee78a167ff323b9f45d20532d064d6778d.tar.bz2 android_bionic-f2c1e7ee78a167ff323b9f45d20532d064d6778d.zip |
Hide ScopedTrace.
Bug: 11156955
Change-Id: I6cddc868d1c6503e30f1ffcf460f45670631d64a
Diffstat (limited to 'libc')
-rw-r--r-- | libc/private/bionic_systrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |