From 407a1409da2dee7081c4d65d74b8c0f7aab5fa72 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Tue, 19 Aug 2014 16:26:09 +0200 Subject: [PATCH] refs #314, remove copy assignment operator --- src/blackmisc/valueobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackmisc/valueobject.h b/src/blackmisc/valueobject.h index 9cdf76be8..a2b4150f1 100644 --- a/src/blackmisc/valueobject.h +++ b/src/blackmisc/valueobject.h @@ -230,7 +230,7 @@ namespace BlackMisc CValueObject(const CValueObject &) {} //! Copy assignment operator = - CValueObject &operator=(const CValueObject &) { return *this; } + // CValueObject &operator=(const CValueObject &) { return *this; } //! String for streaming operators virtual QString stringForStreaming() const;