[Messaging] Removed copy constructor from CompositeIterState.
authorPawel Andruszkiewicz <p.andruszkie@samsung.com>
Thu, 11 Jun 2015 09:53:55 +0000 (11:53 +0200)
committerPawel Andruszkiewicz <p.andruszkie@samsung.com>
Thu, 11 Jun 2015 09:53:55 +0000 (11:53 +0200)
Copy constructor was the identical to compiler-generated.

Prevent CID: 328670

[Verification] Code compiles.

Change-Id: I4a9590f1a36d5aeb5e0a574135978ec247292a4b
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
src/messaging/MsgCommon/FilterIterator.h

index b3f625a25b37e6b56f70ca6e05519cf043934067..a3d92d0d63f476ed59af6d201ad7e0f299a414ae 100755 (executable)
@@ -83,12 +83,6 @@ private:
         {
         }
 
-        CompositeIterState(const CompositeIterState& other) :
-                filter(other.filter),
-                cur_sub_filter_index(other.cur_sub_filter_index)
-        {
-        }
-
         CompositeFilterPtr filter;
         int cur_sub_filter_index;
     };