Ignore:
Timestamp:
Jun 16, 2008, 6:39:59 AM (17 years ago)
Author:
[email protected]
Message:

(JavaScriptCore) minidom uses C++ style comments

https://bugs.webkit.org/show_bug.cgi?id=19557

Use only C style comments in minidom sources

Reviewed by Sam.

File:
1 edited

Legend:

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

    r27947 r34598  
    1 /* -*- mode: c++; c-basic-offset: 4 -*- */
     1/* -*- mode: c; c-basic-offset: 4 -*- */
    22/*
    33 * Copyright (C) 2003, 2006, 2007 Apple Inc.  All rights reserved.
     
    8484#endif
    8585
    86 // WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute
    87 // emits a warning when %@ is used in the format string.  Until <rdar://problem/5195437> is resolved we can't include
    88 // the attribute when being used from Objective-C code in case it decides to use %@.
     86/* WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute
     87  emits a warning when %@ is used in the format string.  Until <rdar://problem/5195437> is resolved we can't include
     88   the attribute when being used from Objective-C code in case it decides to use %@. */
    8989#if COMPILER(GCC) && !defined(__OBJC__)
    9090#define WTF_ATTRIBUTE_PRINTF(formatStringArgument, extraArguments) __attribute__((__format__(printf, formatStringArgument, extraArguments)))
     
    155155    } \
    156156while (0)
    157 #endif // COMPILER(MSVC7)
     157#endif /* COMPILER(MSVC7) */
    158158#define ASSERT_NOT_REACHED() do { \
    159159    WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, 0); \
     
    230230#endif
    231231
    232 #endif // WTF_Assertions_h
     232#endif /* WTF_Assertions_h */
Note: See TracChangeset for help on using the changeset viewer.