Changeset 31150 in webkit for trunk/JavaScriptCore/API


Ignore:
Timestamp:
Mar 19, 2008, 12:48:37 AM (17 years ago)
Author:
[email protected]
Message:

2008-03-19 Jasper Bryant-Greene <[email protected]>

Reviewed by Maciej Stachowiak.

Fix http://bugs.webkit.org/show_bug.cgi?id=17941
Bug 17941: C++-style comments in JavaScriptCore API

  • API/JSBase.h: Remove C++-style comments from public JavaScriptCore API, replacing with standard C90 block comments.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSBase.h

    r29663 r31150  
    1 // -*- mode: c++; c-basic-offset: 4 -*-
     1/* -*- mode: c++; c-basic-offset: 4 -*- */
    22/*
    33 * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
     
    6565    #define JS_EXPORT __attribute__((visibility("default")))
    6666#elif defined(WIN32) || defined(_WIN32)
    67     // TODO: Export symbols with JS_EXPORT when using MSVC.
    68     // See http://bugs.webkit.org/show_bug.cgi?id=16227
     67    /*
     68     * TODO: Export symbols with JS_EXPORT when using MSVC.
     69     * See http://bugs.webkit.org/show_bug.cgi?id=16227
     70     */
    6971    #define JS_EXPORT
    7072#else
     
    123125#endif
    124126
    125 #endif // JSBase_h
     127#endif /* JSBase_h */
Note: See TracChangeset for help on using the changeset viewer.