FastLED 3.9.15
Loading...
Searching...
No Matches

◆ forward() [1/2]

template<typename T>
T && fl::forward ( typename remove_reference< T >::type && t)
constexpr

Definition at line 240 of file type_traits.h.

240 {
242 "Cannot forward an rvalue as an lvalue");
243 return static_cast<T &&>(t);
244}
#define FL_STATIC_ASSERT(...)

References FL_NOEXCEPT, FL_STATIC_ASSERT, t, and fl::is_lvalue_reference< T >::value.