summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/staptree.h b/staptree.h
index 284b4ea1..895c6667 100644
--- a/staptree.h
+++ b/staptree.h
@@ -92,7 +92,8 @@ struct literal_string: public literal
struct literal_number: public literal
{
int64_t value;
- literal_number (int64_t v);
+ bool print_hex;
+ literal_number (int64_t v, bool hex=false);
void print (std::ostream& o) const;
void visit (visitor* u);
};