summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/error-handler.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/parser/error-handler.txx')
-rw-r--r--libxsd/xsd/cxx/parser/error-handler.txx39
1 files changed, 0 insertions, 39 deletions
diff --git a/libxsd/xsd/cxx/parser/error-handler.txx b/libxsd/xsd/cxx/parser/error-handler.txx
deleted file mode 100644
index 5d3e50f..0000000
--- a/libxsd/xsd/cxx/parser/error-handler.txx
+++ /dev/null
@@ -1,39 +0,0 @@
-// file : xsd/cxx/parser/error-handler.txx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-namespace xsd
-{
- namespace cxx
- {
- namespace parser
- {
- template <typename C>
- bool error_handler<C>::
- handle (const std::basic_string<C>& id,
- unsigned long line,
- unsigned long column,
- severity s,
- const std::basic_string<C>& message)
- {
- diagnostics_.push_back (
- error<C> (s == severity::warning
- ? cxx::parser::severity::warning
- : cxx::parser::severity::error,
- id, line, column, message));
-
- if (!failed_ && s != severity::warning)
- failed_ = true;
-
- return true;
- }
-
- template <typename C>
- void error_handler<C>::
- throw_if_failed () const
- {
- if (failed_)
- throw parsing<C> (diagnostics_);
- }
- }
- }
-}