Re: Compiler Error building the C++ support library (with MSVC60)?
Posted By:
he_qing
Posted On:
Wednesday, March 10, 2004 07:01 AM
I try to modify cppantlrAST.hpp
extern ANTLR_API AST* const nullASTptr;
to
extern ANTLR_API const AST* nullASTptr;
and modify cppsrcBaseAST.cpp
ANTLR_API AST* const nullASTptr=0;
to
ANTLR_API const AST* nullASTptr=0;
Is there a solution?