diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-03-27 22:00:40 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-03-27 22:00:40 +0000 |
commit | c58adf16c4cdec8268d72b74b8e6e2ed870b62c5 (patch) | |
tree | 403ced1479e914c4857665f0e63442b111225854 /cpp/src | |
parent | removing shutdown command; adding type to topic (diff) | |
download | ice-c58adf16c4cdec8268d72b74b8e6e2ed870b62c5.tar.bz2 ice-c58adf16c4cdec8268d72b74b8e6e2ed870b62c5.tar.xz ice-c58adf16c4cdec8268d72b74b8e6e2ed870b62c5.zip |
removing shutdown command
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceStorm/Grammar.y | 5 | ||||
-rw-r--r-- | cpp/src/IceStorm/Parser.h | 1 | ||||
-rw-r--r-- | cpp/src/IceStorm/Scanner.l | 4 |
3 files changed, 0 insertions, 10 deletions
diff --git a/cpp/src/IceStorm/Grammar.y b/cpp/src/IceStorm/Grammar.y index 7987d626849..2a15369fd88 100644 --- a/cpp/src/IceStorm/Grammar.y +++ b/cpp/src/IceStorm/Grammar.y @@ -44,7 +44,6 @@ yyerror(const char* s) %token ICE_STORM_CREATE %token ICE_STORM_DESTROY %token ICE_STORM_LIST -%token ICE_STORM_SHUTDOWN %token ICE_STORM_LINK %token ICE_STORM_UNLINK %token ICE_STORM_GRAPH @@ -114,10 +113,6 @@ command { parser->dolist($2); } -| ICE_STORM_SHUTDOWN ';' -{ - parser->shutdown(); -} | error ';' { yyerrok; diff --git a/cpp/src/IceStorm/Parser.h b/cpp/src/IceStorm/Parser.h index 235557280d0..7cb4284491c 100644 --- a/cpp/src/IceStorm/Parser.h +++ b/cpp/src/IceStorm/Parser.h @@ -75,7 +75,6 @@ public: void link(const std::list<std::string>&); void unlink(const std::list<std::string>&); void graph(const std::list<std::string>&); - void shutdown(); void getInput(char*, int&, int); void nextLine(); diff --git a/cpp/src/IceStorm/Scanner.l b/cpp/src/IceStorm/Scanner.l index 69db056b367..0f7d7da728b 100644 --- a/cpp/src/IceStorm/Scanner.l +++ b/cpp/src/IceStorm/Scanner.l @@ -124,10 +124,6 @@ NL [\n] return ICE_STORM_GRAPH; } -"shutdown" { - return ICE_STORM_SHUTDOWN; -} - {WS}*(\\{WS}*{NL})? { int len = strlen(yytext); for(int i = 0; i < len; ++i) |