Commit 7882c205 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Cut unnecessary library-local comment in SingletonThreadLocal

Summary: [Folly] Cut unnecessary `library-local` comment in `SingletonThreadLocal`.

Reviewed By: djwatson

Differential Revision: D7316088

fbshipit-source-id: 08b8634b2f0d32776d548115109bc65732e4c880
parent 10a9dadf
...@@ -97,8 +97,7 @@ class SingletonThreadLocal { ...@@ -97,8 +97,7 @@ class SingletonThreadLocal {
}; };
FOLLY_EXPORT FOLLY_NOINLINE static Wrapper& getWrapper() { FOLLY_EXPORT FOLLY_NOINLINE static Wrapper& getWrapper() {
/* library-local */ static auto entry = static auto entry = detail::createGlobal<ThreadLocal<Wrapper>, Tag>();
detail::createGlobal<ThreadLocal<Wrapper>, Tag>();
return **entry; return **entry;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment