Searched refs:that (Results 1 – 4 of 4) sorted by relevance
35 constexpr ScopeGuard(ScopeGuard &&that) noexcept in ScopeGuard() argument36 : f_(that.f_), active_(that.active_) { in ScopeGuard()37 that.active_ = false; in ScopeGuard()41 constexpr ScopeGuard(ScopeGuard<Functor> &&that) in ScopeGuard() argument42 : f_(that.f_), active_(that.active_) { in ScopeGuard()43 that.active_ = false; in ScopeGuard()51 void operator=(ScopeGuard &&that) = delete;
5 // license that can be found in the LICENSE file or at
2 // Use of this source code is governed by a BSD-style license that can be
2 // Use of this source code is governed by a BSD-style license that can be377 // Macro for defining a trait that checks if a type T has a method with the382 // Note that the resulting trait_name will be in the namespace where the macro449 // functions to detect every type that _isn't_ a function. This
Completed in 67 milliseconds