Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/drtimcooper/XmlRpc4Win.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2016-05-21 00:24:32 +0300
committerKacper Michajłow <kasper93@gmail.com>2016-05-21 13:30:41 +0300
commitcfa012e65880926adc90f9202371c6b11ca05094 (patch)
tree98a060764c04a572bec3f0f471261ff3164e2002
parent4d355160ba02686c357b6c6ebf52f5edca931517 (diff)
Make copy assigment operator private for ValueArray.
-rw-r--r--timxmlrpc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/timxmlrpc.h b/timxmlrpc.h
index b0c3dfb..eac3f54 100644
--- a/timxmlrpc.h
+++ b/timxmlrpc.h
@@ -114,6 +114,8 @@ public:
int _size;
int _allocated;
+ ValueArray& operator=(const ValueArray &other);
+
public:
ValueArray() { A = NULL; _size = _allocated = 0; }
ValueArray(int n) {