summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/staptree.h b/staptree.h
index 67349b8e..284b4ea1 100644
--- a/staptree.h
+++ b/staptree.h
@@ -529,8 +529,8 @@ struct block: public statement
struct try_block: public statement
{
- block* try_block; // may be 0
- block* catch_block; // may be 0
+ statement* try_block; // may be 0
+ statement* catch_block; // may be 0
symbol* catch_error_var; // may be 0
void print (std::ostream& o) const;
void visit (visitor* u);