From 3f847830da8905e8d8d2a9f939c8c8274fc0f19b Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 10 Jun 2008 15:40:36 -0400 Subject: PR6470: fix preprocessor construct nesting/expansion logic --- parse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parse.h') diff --git a/parse.h b/parse.h index 557fa4c5..ae1ac67f 100644 --- a/parse.h +++ b/parse.h @@ -69,7 +69,7 @@ struct systemtap_session; class lexer { public: - token* scan (bool wildcard=false, bool expand_args=true); + token* scan (bool wildcard=false); lexer (std::istream&, const std::string&, systemtap_session&); private: @@ -132,7 +132,7 @@ private: // preprocessing subordinate std::vector enqueued_pp; - const token* scan_pp (bool wildcard=false, bool expand_args=true); + const token* scan_pp (bool wildcard=false); // scanning state const token* last (); -- cgit