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

◆ fetch_add()

template<typename T>
T fl::AtomicFake< T >::fetch_add ( T value)
inline

Definition at line 157 of file atomic.h.

157 {
158 T old = mValue;
159 T temp = old + value;
160 mValue = temp;
161 return old;
162 }
T volatile mValue
Definition atomic.h:193

Referenced by fl::Channel::nextId(), fl::RxChannel::nextId(), and AutoResearchRemoteControl::registerFunctions().

+ Here is the caller graph for this function: