Commit d2a3bb4f authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook GitHub Bot

Remove the guard around tag

Summary: [Folly] Remove the guard around `tag`, the inline variable of type `tag_t`.

Reviewed By: Mizuchi

Differential Revision: D23370037

fbshipit-source-id: 59a48d834904b7e503f807c62fff8534568c9a0a
parent 28cc462f
......@@ -127,12 +127,8 @@ namespace folly {
template <typename...>
struct tag_t {};
#if __cplusplus >= 201703L
template <typename... T>
inline constexpr tag_t<T...> tag;
#endif
FOLLY_INLINE_VARIABLE constexpr tag_t<T...> tag{};
#if __cpp_lib_bool_constant || _MSC_VER
......
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