Searched defs:NTMove (Results 1 – 1 of 1) sorted by relevance
47 struct NTMove { struct48 constexpr NTMove(int v) : value(v) {} in NTMove() argument50 NTMove(NTMove&& that) : value(that.value) { that.value = -1; } in NTMove() argument54 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument