Fixed warnings & bogus qualifier.

This commit is contained in:
rogerl%netscape.com 2000-11-07 01:09:45 +00:00
Родитель 468f6835ea
Коммит ec89b08c8b
4 изменённых файлов: 10 добавлений и 4 удалений

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

@ -173,7 +173,7 @@ static JSValue load(Context *cx, const JSValues &argv)
static bool goGeorge = false;
static JSValue george(Context *cx, const JSValues &argv)
static JSValue george(Context *, const JSValues &)
{
goGeorge = !goGeorge;

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

@ -227,11 +227,14 @@ InitNumerics::InitNumerics()
word1(nan) = 0xFFFFFFFF;
}
// had to move these here since they depend upon the values
// initialized above, and we can't guarantee order other than
// lexically in a single file.
const JSValue JSTypes::kUndefinedValue;
const JSValue JSTypes::kNaNValue = JSValue(nan);
const JSValue JSTypes::kTrueValue = JSValue(true);
const JSValue JSTypes::kFalseValue = JSValue(false);
const JSValue JSTypes::kNullValue = JSValue(JSValue::Tag::null_tag);
const JSValue JSTypes::kNullValue = JSValue(JSValue::null_tag);
const JSValue JSTypes::kNegativeZero = JSValue(-0.0);
const JSValue JSTypes::kPositiveZero = JSValue(0.0);
const JSValue JSTypes::kNegativeInfinity = JSValue(negativeInfinity);

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

@ -227,11 +227,14 @@ InitNumerics::InitNumerics()
word1(nan) = 0xFFFFFFFF;
}
// had to move these here since they depend upon the values
// initialized above, and we can't guarantee order other than
// lexically in a single file.
const JSValue JSTypes::kUndefinedValue;
const JSValue JSTypes::kNaNValue = JSValue(nan);
const JSValue JSTypes::kTrueValue = JSValue(true);
const JSValue JSTypes::kFalseValue = JSValue(false);
const JSValue JSTypes::kNullValue = JSValue(JSValue::Tag::null_tag);
const JSValue JSTypes::kNullValue = JSValue(JSValue::null_tag);
const JSValue JSTypes::kNegativeZero = JSValue(-0.0);
const JSValue JSTypes::kPositiveZero = JSValue(0.0);
const JSValue JSTypes::kNegativeInfinity = JSValue(negativeInfinity);

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

@ -173,7 +173,7 @@ static JSValue load(Context *cx, const JSValues &argv)
static bool goGeorge = false;
static JSValue george(Context *cx, const JSValues &argv)
static JSValue george(Context *, const JSValues &)
{
goGeorge = !goGeorge;