From c435c7daa9df1b08dc85132fcd1c154bea9b69e2 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 18:21:03 +0000 Subject: Fixes to use libbu++ Bu::String --- src/ast.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index c62406b..3cc7206 100644 --- a/src/ast.h +++ b/src/ast.h @@ -3,7 +3,7 @@ #include "bu/list.h" #include "bu/stack.h" -#include "bu/fstring.h" +#include "bu/string.h" #include "bu/formatter.h" #include "astnode.h" @@ -24,14 +24,14 @@ public: void addNode( struct YYLTYPE &loc, AstNode::Type eType, float fVal ); void addNode( struct YYLTYPE &loc, AstNode::Type eType, bool bVal ); void addNode( struct YYLTYPE &loc, AstNode::Type eType, - const Bu::FString &sVal ); + const Bu::String &sVal ); void addNode( struct YYLTYPE &loc, AstNode::Type eType, const char *sVal ); void addNode( AstNode::Type eType ); void addNode( AstNode::Type eType, int iVal ); void addNode( AstNode::Type eType, float fVal ); void addNode( AstNode::Type eType, bool bVal ); - void addNode( AstNode::Type eType, const Bu::FString &sVal ); + void addNode( AstNode::Type eType, const Bu::String &sVal ); void addNode( AstNode::Type eType, const char *sVal ); void addNode( AstNode *pNode ); -- cgit v1.2.3