Skip to content

Commit

Permalink
refactor: rerange operator order
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN authored Dec 14, 2023
1 parent 06de645 commit 9c08557
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ll/api/memory/Closure.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ class NativeClosure {

~NativeClosure() { detail::releaseNativeClosure(this, closureSize); }

NativeClosure(NativeClosure const&) = delete;
NativeClosure(NativeClosure&&) noexcept = delete;
NativeClosure& operator=(NativeClosure const&) noexcept = delete;
NativeClosure& operator=(NativeClosure&&) noexcept = delete;
NativeClosure(NativeClosure&&) = delete;
NativeClosure(NativeClosure const&) = delete;
NativeClosure& operator=(NativeClosure&&) = delete;
NativeClosure& operator=(NativeClosure const&) = delete;
};
template <class Ret, class... Args>
class FunctionalClosure : public NativeClosure<Ret, Args...> {
Expand Down

0 comments on commit 9c08557

Please sign in to comment.