Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r9ed4f94 r9bd6105  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Aug 30 07:04:19 2017
    13 // Update Count     : 2740
     12// Last Modified On : Sat Aug 26 17:50:19 2017
     13// Update Count     : 2712
    1414//
    1515
     
    4848#include <cstdio>
    4949#include <stack>
    50 using namespace std;
    51 
    5250#include "ParseNode.h"
    5351#include "TypedefTable.h"
    5452#include "TypeData.h"
    5553#include "LinkageSpec.h"
    56 #include "Common/SemanticError.h"                                               // error_str
     54using namespace std;
    5755
    5856extern DeclarationNode * parseTree;
     
    31353133// ----end of grammar----
    31363134
     3135extern char *yytext;
     3136
     3137void yyerror( const char * ) {
     3138        cout << "Error ";
     3139        if ( yyfilename ) {
     3140                cout << "in file " << yyfilename << " ";
     3141        } // if
     3142        cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl;
     3143}
     3144
    31373145// Local Variables: //
    31383146// mode: c++ //
Note: See TracChangeset for help on using the changeset viewer.