Changeset 29439 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jan 12, 2008, 10:05:44 AM (17 years ago)
Author:
Darin Adler
Message:
  • try to fix Qt build
  • kjs/function.cpp: Added include of scope_chain_mark.h.
  • kjs/scope_chain_mark.h: Added multiple-include guards.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r29438 r29439  
     12008-01-12  Darin Adler  <[email protected]>
     2
     3        - try to fix Qt build
     4
     5        * kjs/function.cpp: Added include of scope_chain_mark.h.
     6        * kjs/scope_chain_mark.h: Added multiple-include guards.
     7
    182008-01-12  Mark Rowe  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/function.cpp

    r29431 r29439  
    3939#include "nodes.h"
    4040#include "operations.h"
     41#include "scope_chain_mark.h"
    4142#include <errno.h>
    4243#include <stdio.h>
  • trunk/JavaScriptCore/kjs/scope_chain_mark.h

    r29425 r29439  
    11/*
    2  *  Copyright (C) 2003, 2006 Apple Inc.
     2 *  Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
    33 *
    44 *  This library is free software; you can redistribute it and/or
     
    1919 */
    2020
     21#ifndef scope_chain_mark_h
     22#define scope_chain_mark_h
     23
     24#include "Activation.h"
    2125#include "scope_chain.h"
    22 #include "Activation.h"
    23 #include "object.h"
    2426
    2527namespace KJS {
     
    4446
    4547} // namespace KJS
     48
     49#endif
Note: See TracChangeset for help on using the changeset viewer.