Searched defs:NTMove (Results 1 – 2 of 2) sorted by relevance
54 struct NTMove { struct55 constexpr NTMove(int v) : value(v) {} in NTMove() argument57 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function61 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument
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