Skip to content

Commit 327c177

Browse files
first commit
1 parent 65a96ea commit 327c177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nautilus-api/include/Interface/DataTypes/TypedRef.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TypedRef final : public BaseTypedRef {
4747
TypedRef<T>& operator=(const TypedRef<T>& other) { return *this = TypedRef<T>(other); };
4848

4949
// move assignment
50-
TypedRef<T>& operator=(const TypedRef<T>&& other) {
50+
TypedRef<T>& operator=(TypedRef<T>&& other) {
5151
std::swap(value, other.value);
5252
return *this;
5353
};

0 commit comments

Comments
 (0)