Changeset 34598 in webkit for trunk/JavaScriptCore/API/Node.c


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/API/Node.c

    r29672 r34598  
    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.
     
    5050void Node_removeChild(Node* node, Node* child)
    5151{
    52     // Linear search from tail -- good enough for our purposes here
     52    /* Linear search from tail -- good enough for our purposes here */
    5353    NodeLink* current;
    5454    NodeLink** currentHandle;
     
    6565void Node_replaceChild(Node* node, Node* newChild, Node* oldChild)
    6666{
    67     // Linear search from tail -- good enough for our purposes here
     67    /* Linear search from tail -- good enough for our purposes here */
    6868    NodeLink* current;
    6969    for (current = node->childNodesTail; current; current = current->prev) {
Note: See TracChangeset for help on using the changeset viewer.