Bug 610480 nit fix: use old-style comments in jsapi.h

This commit is contained in:
David Mandelin 2010-11-10 16:59:35 -08:00
Родитель dff0f088cf
Коммит c6a892030e
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -360,8 +360,10 @@ JSID_TO_INT(jsid id)
return ((int32)JSID_BITS(id)) >> 1;
}
// Note: when changing these values, verify that their use in
// js_CheckForStringIndex is still valid.
/*
* Note: when changing these values, verify that their use in
* js_CheckForStringIndex is still valid.
*/
#define JSID_INT_MIN (-(1 << 30))
#define JSID_INT_MAX ((1 << 30) - 1)