diff options
Diffstat (limited to 'idlc/source/parser.y')
-rw-r--r-- | idlc/source/parser.y | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index 6de66aee9b17..38e54382c15d 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -104,11 +104,15 @@ #include <algorithm> #include <vector> -using namespace rtl; #define YYDEBUG 1 #define YYERROR_VERBOSE 1 +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OStringToOUString; +using ::rtl::OStringBuffer; + extern int yylex(void); void yyerror(char const *); |