Commit 0aac0635 authored by Orvid King's avatar Orvid King Committed by facebook-github-bot-4

Fix a parse error in detail/ThreadLocalDetail.h under MSVC

Summary: I have no idea why this specific declaration would error, or if there is a difference in meaning, but this fixes MSVC's absurd parser error.
Closes #277

Reviewed By: @yfeldblum

Differential Revision: D2284096
parent d383a116
...@@ -450,8 +450,8 @@ struct StaticMeta { ...@@ -450,8 +450,8 @@ struct StaticMeta {
#ifdef FOLLY_TLD_USE_FOLLY_TLS #ifdef FOLLY_TLD_USE_FOLLY_TLS
template <class Tag> template <class Tag>
FOLLY_TLS ThreadEntry StaticMeta<Tag>::threadEntry_{nullptr, 0, FOLLY_TLS ThreadEntry StaticMeta<Tag>::threadEntry_ = {nullptr, 0,
nullptr, nullptr}; nullptr, nullptr};
#endif #endif
template <class Tag> StaticMeta<Tag>* StaticMeta<Tag>::inst_ = nullptr; template <class Tag> StaticMeta<Tag>* StaticMeta<Tag>::inst_ = nullptr;
......
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