Ignore:
Timestamp:
Feb 19, 2006, 9:20:40 AM (19 years ago)
Author:
darin
Message:
  • renamed ERROR to LOG_ERROR to fix build presumably Maciej had this change and forgot to land it
  • kjs/collector.cpp: Removed now-unneeded #undef ERROR.
  • kxmlcore/Assertions.h: Renamed ERROR to LOG_ERROR.
  • kxmlcore/FastMalloc.cpp: Changed MESSAGE macro to use LOG_ERROR.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kxmlcore/Assertions.h

    r12304 r12897  
    11// -*- mode: c++; c-basic-offset: 4 -*-
    22/*
    3  * Copyright (C) 2003 Apple Computer, Inc.  All rights reserved.
     3 * Copyright (C) 2003, 2006 Apple Computer, Inc.  All rights reserved.
    44 *
    55 * Redistribution and use in source and binary forms, with or without
     
    158158#endif
    159159
    160 // ERROR
     160// LOG_ERROR
    161161
    162162#if ERROR_DISABLED
    163 #define ERROR(...) ((void)0)
     163#define LOG_ERROR(...) ((void)0)
    164164#else
    165 #define ERROR(...) KXCReportError(__FILE__, __LINE__, KXMLCORE_PRETTY_FUNCTION, __VA_ARGS__)
     165#define LOG_ERROR(...) KXCReportError(__FILE__, __LINE__, KXMLCORE_PRETTY_FUNCTION, __VA_ARGS__)
    166166#endif
    167167
Note: See TracChangeset for help on using the changeset viewer.