summaryrefslogtreecommitdiffstats
path: root/src/runtime/dragon/dragonmutable_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/dragon/dragonmutable_p.h')
-rw-r--r--src/runtime/dragon/dragonmutable_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/dragon/dragonmutable_p.h b/src/runtime/dragon/dragonmutable_p.h
index af671e8..6d18b8c 100644
--- a/src/runtime/dragon/dragonmutable_p.h
+++ b/src/runtime/dragon/dragonmutable_p.h
@@ -151,12 +151,12 @@ struct Mutable
return container.get();
}
- bool operator==(const Mutable<T> &other)
+ bool operator==(const Mutable<T> &other) const
{
return *container == *other.container;
}
- bool operator!=(const Mutable<T> &other)
+ bool operator!=(const Mutable<T> &other) const
{
return *container != *other.container;
}