Searched defs:NoSwap (Results 1 – 1 of 1) sorted by relevance
398 struct NoSwap { in TEST() struct399 NoSwap(int val) : val(val) {} in TEST() function400 NoSwap(const NoSwap& other) : val(other.val) {} in TEST() function401 NoSwap(NoSwap&& other) : val(other.val) {} in TEST() argument402 int val; in TEST()