aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/parser/error-handling/exceptions
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-22 07:52:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-22 07:52:26 +0200
commitf61feaac853766def5049afe85850afa8a394f72 (patch)
tree04490e4c14b14586456bb0c7b4be72664692d11c /tests/cxx/parser/error-handling/exceptions
parentc225f3afe3e4d01ca5e24882f1d8004399e58780 (diff)
Get rid of unneeded #ifdef
Diffstat (limited to 'tests/cxx/parser/error-handling/exceptions')
-rw-r--r--tests/cxx/parser/error-handling/exceptions/driver.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/cxx/parser/error-handling/exceptions/driver.cxx b/tests/cxx/parser/error-handling/exceptions/driver.cxx
index 0ad6b80..3c27383 100644
--- a/tests/cxx/parser/error-handling/exceptions/driver.cxx
+++ b/tests/cxx/parser/error-handling/exceptions/driver.cxx
@@ -241,13 +241,11 @@ main (int argc, char* argv[])
cout << "xml:" << e.line () << ":" << e.column () << ": "
<< e.code () << ": " << e.text () << endl;
}
-#ifdef XSDE_PARSER_VALIDATION
catch (xml_schema::parser_schema const& e)
{
cout << "schema:" << e.line () << ":" << e.column () << ": "
<< e.code () << ": " << e.text () << endl;
}
-#endif
catch (app const& e)
{
cout << "app: " << e.code () << endl;