diff options
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r-- | src/pugixml.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 28be942..105e056 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -4866,6 +4866,17 @@ namespace pugi return *this; } +#ifdef __BORLANDC__ + PUGI__FN bool operator&&(const xml_text& lhs, bool rhs) + { + return (bool)lhs && rhs; + } + + PUGI__FN bool operator||(const xml_text& lhs, bool rhs) + { + return (bool)lhs || rhs; + } +#endif PUGI__FN xml_node_iterator::xml_node_iterator() { |