Bug 1037686 - Remove js_strdup now that no one uses it. r=jimb

--HG--
extra : rebase_source : d05252549d90371daec12562b5e88c7029fb41cc
This commit is contained in:
Jeff Walden 2014-07-11 15:12:16 -07:00
Родитель bf575a31b1
Коммит 90d8bb6fe0
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -306,12 +306,6 @@ js_strdup(js::ThreadSafeContext *cx, const jschar *s)
return js::DuplicateString(cx, s).release();
}
inline char *
js_strdup(js::ThreadSafeContext *cx, const char *s)
{
return js::DuplicateString(cx, s).release();
}
extern bool
js_str_toString(JSContext *cx, unsigned argc, js::Value *vp);