diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-06-10 15:40:36 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-06-10 16:56:06 -0400 |
commit | 3f847830da8905e8d8d2a9f939c8c8274fc0f19b (patch) | |
tree | b5623f84c2380272a5287dabfbdd4297f42de745 /parse.h | |
parent | c434ec7ed135e8901e51141c90a101d337644464 (diff) | |
download | systemtap-steved-3f847830da8905e8d8d2a9f939c8c8274fc0f19b.tar.gz systemtap-steved-3f847830da8905e8d8d2a9f939c8c8274fc0f19b.tar.xz systemtap-steved-3f847830da8905e8d8d2a9f939c8c8274fc0f19b.zip |
PR6470: fix preprocessor construct nesting/expansion logic
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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<const token*> 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 (); |