Changeset 37698 in webkit


Ignore:
Timestamp:
Oct 18, 2008 10:20:49 PM (16 years ago)
Author:
Darin Adler
Message:

2008-10-18 Darin Adler <Darin Adler>

  • fix non-all-in-one build
  • kjs/completion.h: (JSC::Completion::Completion): Add include of JSValue.h.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r37697 r37698  
     12008-10-18  Darin Adler  <darin@apple.com>
     2
     3        - fix non-all-in-one build
     4
     5        * kjs/completion.h:
     6        (JSC::Completion::Completion): Add include of JSValue.h.
     7
    182008-10-18  Darin Adler  <darin@apple.com>
    29
  • trunk/JavaScriptCore/kjs/completion.h

    r37684 r37698  
    2424#define KJS_COMPLETION_H
    2525
     26#include <kjs/JSValue.h>
     27
    2628namespace JSC {
    2729
     
    3638    class Completion {
    3739    public:
    38         Completion(ComplType type = Normal, JSValuePtr value = 0)
     40        Completion(ComplType type = Normal, JSValuePtr value = noValue())
    3941            : m_type(type)
    4042            , m_value(value)
Note: See TracChangeset for help on using the changeset viewer.