added operator[](const char*) to StringAtomTable.

This commit is contained in:
beard%netscape.com 2000-07-14 23:10:02 +00:00
Родитель 8d73f75efe
Коммит 96e8363f86
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -54,6 +54,11 @@ namespace JavaScript {
public:
StringAtom &operator[](const String &s);
StringAtom &operator[](const char *s)
{
return operator[](widenCString(s));
}
};

Просмотреть файл

@ -54,6 +54,11 @@ namespace JavaScript {
public:
StringAtom &operator[](const String &s);
StringAtom &operator[](const char *s)
{
return operator[](widenCString(s));
}
};