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

fix param name in FOLLY_CREATE_FREE_INVOKER_SUITE

Reviewed By: Gownta

Differential Revision: D32669969

fbshipit-source-id: 4e0cd2cf73ba695720dd41416d0d04a3996385da
parent 20047d63
......@@ -393,10 +393,9 @@ struct invoke_traits : detail::invoke_traits_base<I> {
*
* See FOLLY_CREATE_FREE_INVOKER.
*/
#define FOLLY_CREATE_FREE_INVOKER_SUITE(membername, ...) \
FOLLY_CREATE_FREE_INVOKER(membername##_fn, membername, __VA_ARGS__); \
FOLLY_MAYBE_UNUSED FOLLY_INLINE_VARIABLE constexpr membername##_fn \
membername {}
#define FOLLY_CREATE_FREE_INVOKER_SUITE(funcname, ...) \
FOLLY_CREATE_FREE_INVOKER(funcname##_fn, funcname, __VA_ARGS__); \
FOLLY_MAYBE_UNUSED FOLLY_INLINE_VARIABLE constexpr funcname##_fn funcname {}
/***
* FOLLY_CREATE_MEMBER_INVOKER
......
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