diff options
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index db858d6..53f4b63 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -614,6 +614,12 @@ namespace pugi xml_text& operator=(bool rhs); }; +#ifdef __BORLANDC__ + // Borland C++ workaround + bool PUGIXML_FUNCTION operator&&(const xml_text& lhs, bool rhs); + bool PUGIXML_FUNCTION operator||(const xml_text& lhs, bool rhs); +#endif + // Child node iterator (a bidirectional iterator over a collection of xml_node) class PUGIXML_CLASS xml_node_iterator { |