Changeset 12024 in webkit for trunk/JavaScriptCore/kjs/lexer.cpp


Ignore:
Timestamp:
Jan 12, 2006, 7:25:58 AM (19 years ago)
Author:
darin
Message:

Reviewed, tweaked, and landed by Darin.

  • kjs/dtoa.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved dtoa.h include to the top. Changed system header includes to use angle brackets instead of quotes.
  • kjs/grammar.y: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets.
  • kjs/lexer.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved lexer.h include to the top.
  • kjs/ustring.cpp: Removed HAVE_CONFIG_H, changed config.h to use quotes instead of angle brackets. Moved ustring.h include to the top.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/lexer.cpp

    r11962 r12024  
    2121 */
    2222
    23 #ifdef HAVE_CONFIG_H
    24 #include <config.h>
    25 #endif
     23#include "config.h"
     24#include "lexer.h"
    2625
    2726#include <ctype.h>
     
    3635#include "interpreter.h"
    3736#include "nodes.h"
    38 #include "lexer.h"
    3937#include "identifier.h"
    4038#include "lookup.h"
Note: See TracChangeset for help on using the changeset viewer.