-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Description
Hi there,
template <typename T> struct fifo_manip<T, false, true> { static void access (T && slot, T&& arg) { arg = T(); std::swap (slot, arg); } };
shouldn't this simply be:
template <typename T> struct fifo_manip<T, false, true> { static void access (T && slot, T&& arg) { std::swap (slot, arg); } };
Or, what is the purpose of arg = T()?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels