diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 11:36:36 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 11:37:05 +0300 |
commit | a9b630f95ba352430f1f25d25b538672fddce93c (patch) | |
tree | a14719f66e0a4dd3c29e1d42e932f4e45ef7c8ab /tests/web/xhtml/driver.cxx | |
parent | def0adc835b35f503eda48049e9e753786c21655 (diff) |
Fortify tests against NDEBUG
Diffstat (limited to 'tests/web/xhtml/driver.cxx')
-rw-r--r-- | tests/web/xhtml/driver.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/web/xhtml/driver.cxx b/tests/web/xhtml/driver.cxx index a0135de..3393eb3 100644 --- a/tests/web/xhtml/driver.cxx +++ b/tests/web/xhtml/driver.cxx @@ -8,6 +8,9 @@ #include <web/xhtml/serialization.hxx> +#undef NDEBUG +#include <cassert> + using namespace std; using namespace xml; |