Changeset 27134 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 26, 2007, 6:01:20 PM (18 years ago)
Author:
weinig
Message:

Windows build fix.

  • kjs/SymbolTable.h: Add header gaurd.
  • kjs/nodes.h: #include "SymbolTable.h"
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r27133 r27134  
     12007-10-26  Sam Weinig  <[email protected]>
     2
     3        Windows build fix.
     4
     5        * kjs/SymbolTable.h: Add header gaurd.
     6        * kjs/nodes.h: #include "SymbolTable.h"
     7
    182007-10-26  Geoffrey Garen  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/SymbolTable.h

    r27130 r27134  
    1 // -*- c-basic-offset: 2 -*-
    21/*
    3  *  Copyright (C) 2007 Apple Computer, Inc.
     2 * Copyright (C) 2007 Apple Inc. All rights reserved.
    43 *
    5  *  This library is free software; you can redistribute it and/or
    6  *  modify it under the terms of the GNU Library General Public
    7  *  License as published by the Free Software Foundation; either
    8  *  version 2 of the License, or (at your option) any later version.
     4 * Redistribution and use in source and binary forms, with or without
     5 * modification, are permitted provided that the following conditions
     6 * are met:
    97 *
    10  *  This library is distributed in the hope that it will be useful,
    11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    13  *  Library General Public License for more details.
     8 * 1.  Redistributions of source code must retain the above copyright
     9 *     notice, this list of conditions and the following disclaimer.
     10 * 2.  Redistributions in binary form must reproduce the above copyright
     11 *     notice, this list of conditions and the following disclaimer in the
     12 *     documentation and/or other materials provided with the distribution.
     13 * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
     14 *     its contributors may be used to endorse or promote products derived
     15 *     from this software without specific prior written permission.
    1416 *
    15  *  You should have received a copy of the GNU Library General Public License
    16  *  along with this library; see the file COPYING.LIB.  If not, write to
    17  *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    18  *  Boston, MA 02110-1301, USA.
    19  *
     17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
     18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
     21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2027 */
     28
     29#ifndef SymbolTable_h
     30#define SymbolTable_h
    2131
    2232#include "property_map.h"
     
    2636    class JSValue;
    2737
    28     // SymbolTable is implemented in terms of a PropertyMap hack for now, 
     38    // SymbolTable is implemented in terms of a PropertyMap hack for now,
    2939    // but it should move to WTF::HashMap once that's fast enough.
    3040
     
    4959
    5060} // namespace KJS
     61
     62#endif SymbolTable_h
  • trunk/JavaScriptCore/kjs/nodes.h

    r27126 r27134  
    2727#include "Parser.h"
    2828#include "internal.h"
     29#include "SymbolTable.h"
    2930#include <wtf/ListRefPtr.h>
    3031#include <wtf/Vector.h>
Note: See TracChangeset for help on using the changeset viewer.