Searched defs:NTMove (Results 1 – 2 of 2) sorted by relevance
57 struct NTMove { struct58 constexpr NTMove(int v) : value(v) {} in NTMove() function60 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function64 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument
49 struct NTMove { struct50 constexpr NTMove(int v) : value(v) {} in NTMove() function52 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() argument56 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument