summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/Dump.h
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-09-25 12:42:10 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-09-28 18:29:42 +0200
commit6491493e2697a95f5344f67c2feb41153828b40f (patch)
treee89d0e32df385bce7b049fa21b45bf068de8c664 /Libraries/LibHTML/Dump.h
parent235dee8c421ee26db1bf3a0574975dc5be4c7de0 (diff)
downloadserenity-6491493e2697a95f5344f67c2feb41153828b40f.zip
LibHTML: Hide debugging output unless HTML_DEBUG is defined
Diffstat (limited to 'Libraries/LibHTML/Dump.h')
-rw-r--r--Libraries/LibHTML/Dump.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibHTML/Dump.h b/Libraries/LibHTML/Dump.h
index 546e556ba7..6d9d39828d 100644
--- a/Libraries/LibHTML/Dump.h
+++ b/Libraries/LibHTML/Dump.h
@@ -9,3 +9,5 @@ void dump_tree(const Node&);
void dump_tree(const LayoutNode&);
void dump_sheet(const StyleSheet&);
void dump_rule(const StyleRule&);
+
+#undef HTML_DEBUG