summaryrefslogtreecommitdiffstats
path: root/runtime/handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/handle.h')
-rw-r--r--runtime/handle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/handle.h b/runtime/handle.h
index f70faf40d0..06938e51c0 100644
--- a/runtime/handle.h
+++ b/runtime/handle.h
@@ -146,9 +146,9 @@ class Handle : public ConstHandle<T> {
// A special case of Handle that only holds references to null.
template<class T>
-class NullHandle : public Handle<T> {
+class NullHandle : public ConstHandle<T> {
public:
- NullHandle() : Handle<T>(&null_ref_) {
+ NullHandle() : ConstHandle<T>(&null_ref_) {
}
private: