We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c282cb6 commit aba9487Copy full SHA for aba9487
src/JSONVar.h
@@ -89,7 +89,9 @@ class JSONVar : public Printable {
89
JSONVar operator[](const String& key);
90
JSONVar operator[](int index);
91
JSONVar operator[](const JSONVar& key);
92
-
+#if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__)
93
+ JSONVar operator[](const char) = delete;
94
+#endif
95
int length() const;
96
JSONVar keys() const;
97
bool hasOwnProperty(const char* key) const;
0 commit comments