summaryrefslogtreecommitdiff
path: root/include/super.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/super.h')
-rw-r--r--include/super.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/super.h b/include/super.h
index 7b568e0..07dc4b3 100644
--- a/include/super.h
+++ b/include/super.h
@@ -44,7 +44,7 @@ public:
Value operator[](const std::string &key)
{
// convert object to a value object, and retrieve the key
- return value()[key];
+ return value().get(key);
}
/**
@@ -56,7 +56,7 @@ public:
Value operator[](const char *key)
{
// convert object to a value object, and retrieve the key
- return value()[key];
+ return value().get(key);
}
/**