Skip to content

Commit

Permalink
remove const from arg declaration in move-constructors/move-assignments
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Nov 14, 2019
1 parent b5ed169 commit 11cae5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyIlmBase/PyImath/PyImathUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class PyAcquireLock

PYIMATH_EXPORT PyAcquireLock(const PyAcquireLock& other) = delete;
PYIMATH_EXPORT PyAcquireLock & operator = (PyAcquireLock& other) = delete;
PYIMATH_EXPORT PyAcquireLock(const PyAcquireLock&& other) = delete;
PYIMATH_EXPORT PyAcquireLock(PyAcquireLock&& other) = delete;
PYIMATH_EXPORT PyAcquireLock & operator = (PyAcquireLock&& other) = delete;

private:
Expand All @@ -92,7 +92,7 @@ class PyReleaseLock
PYIMATH_EXPORT ~PyReleaseLock();
PYIMATH_EXPORT PyReleaseLock(const PyReleaseLock& other) = delete;
PYIMATH_EXPORT PyReleaseLock & operator = (PyReleaseLock& other) = delete;
PYIMATH_EXPORT PyReleaseLock(const PyReleaseLock&& other) = delete;
PYIMATH_EXPORT PyReleaseLock(PyReleaseLock&& other) = delete;
PYIMATH_EXPORT PyReleaseLock & operator = (PyReleaseLock&& other) = delete;

private:
Expand Down

0 comments on commit 11cae5a

Please sign in to comment.