зеркало из https://github.com/mozilla/gecko-dev.git
added operator[](const char*) to StringAtomTable.
This commit is contained in:
Родитель
8d73f75efe
Коммит
96e8363f86
|
@ -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));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче