From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- libxsd/libxsd/cxx/parser/xml-schema.txx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libxsd/libxsd/cxx/parser/xml-schema.txx (limited to 'libxsd/libxsd/cxx/parser/xml-schema.txx') diff --git a/libxsd/libxsd/cxx/parser/xml-schema.txx b/libxsd/libxsd/cxx/parser/xml-schema.txx new file mode 100644 index 0000000..47b952e --- /dev/null +++ b/libxsd/libxsd/cxx/parser/xml-schema.txx @@ -0,0 +1,32 @@ +// file : libxsd/cxx/parser/xml-schema.txx +// license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +namespace xsd +{ + namespace cxx + { + namespace parser + { + // string_sequence + // + template + bool + operator== (const string_sequence& a, const string_sequence& b) + { + if (a.size () != b.size ()) + return false; + + for (typename string_sequence::const_iterator + ai (a.begin ()), bi (b.begin ()), ae (a.end ()); + ai != ae; ++ai, ++bi) + { + if (*ai != *bi) + return false; + } + + return true; + } + } + } +} + -- cgit v1.1