move # to first column for Very Lame Compilers.

This commit is contained in:
rginda%netscape.com 2000-10-12 23:58:30 +00:00
Родитель ca1356da38
Коммит cdb2f4b71c
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -435,7 +435,7 @@ bool JSValue::isPositiveZero() const
int JSValue::operator==(const JSValue& value) const
{
if (this->tag == value.tag) {
#define CASE(T) case T##_tag: return (this->T == value.T)
# define CASE(T) case T##_tag: return (this->T == value.T)
switch (tag) {
CASE(i8); CASE(u8);
CASE(i16); CASE(u16);

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

@ -435,7 +435,7 @@ bool JSValue::isPositiveZero() const
int JSValue::operator==(const JSValue& value) const
{
if (this->tag == value.tag) {
#define CASE(T) case T##_tag: return (this->T == value.T)
# define CASE(T) case T##_tag: return (this->T == value.T)
switch (tag) {
CASE(i8); CASE(u8);
CASE(i16); CASE(u16);