From 2a10f4a3b8bb647636b559e7628e4447966f107b Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Tue, 28 Apr 2015 04:55:12 +0100 Subject: [PATCH] move ctors for BORLAND --- include/json/value.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/json/value.h b/include/json/value.h index 426b0f7..2ac94fa 100644 --- a/include/json/value.h +++ b/include/json/value.h @@ -653,9 +653,6 @@ public: typedef int difference_type; typedef ValueIteratorBase SelfType; - ValueIteratorBase(); - explicit ValueIteratorBase(const Value::ObjectValues::iterator& current); - bool operator==(const SelfType& other) const { return isEqual(other); } bool operator!=(const SelfType& other) const { return !isEqual(other); } @@ -703,6 +700,12 @@ private: Value::ObjectValues::iterator current_; // Indicates that iterator is for a null value. bool isNull_; + +public: + // For some reason, BORLAND needs these at the end, rather + // than earlier. No idea why. + ValueIteratorBase(); + explicit ValueIteratorBase(const Value::ObjectValues::iterator& current); }; /** \brief const iterator for object and array value.