Skip to content

Commit 5ee30cd

Browse files
committed
✨ Add FWD macro
1 parent 91cde13 commit 5ee30cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: include/stdx/utility.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,7 @@ constexpr static auto value_lookup_v =
105105
detail::value_t<Default>>::value;
106106
} // namespace v1
107107
} // namespace stdx
108+
109+
#ifndef FWD
110+
#define FWD(x) std::forward<decltype(x)>(x)
111+
#endif

0 commit comments

Comments
 (0)