Ignore:
Timestamp:
Jun 20, 2007, 3:38:44 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/src/smoothie/Source.cpp

    r170 r173  
    55#include <jenga/include/smoothie/BasicFixed.h>
    66#include <jenga/include/smoothie/Source.h>
     7#include <jenga/include/smoothie/LexicalAnalysis.h>
    78#include <jenga/include/smoothie/SmoothieException.h>
    89
     
    874875                i++;
    875876            }
    876             while( Text::IsBlank( buffer[i] ) ){
     877            while( IsBlank( buffer[i] ) ){
    877878                i++;
    878879            }
     
    882883            if( memicmp( buffer + i, generateDirectiveName.c_str(), generateDirectiveName.size() ) == 0 ){
    883884                i += (int)generateDirectiveName.size();
    884                 while( Text::IsBlank( buffer[i] ) ){
     885                while( IsBlank( buffer[i] ) ){
    885886                    i++;
    886887                }
Note: See TracChangeset for help on using the changeset viewer.