Fix TransformIterator operator=

These two operator overloads were giving compile errors as they had
misspelled the names of the member variables.

Presumably they are not used in any of the code and not tested anywhere,
and so the compilers being used on the CI decided to not report this
error. I encountered this error using the MSVC compiler, but it may
cause problems on others too.

Change-Id: I200fc98dbd024d13dbf0e2eca2a0dcd2b0bef261
Signed-off-by: Rob Hughes <robert.hughes@arm.com>
diff --git a/include/armnn/utility/TransformIterator.hpp b/include/armnn/utility/TransformIterator.hpp
index d4f32c5..66fee87 100644
--- a/include/armnn/utility/TransformIterator.hpp
+++ b/include/armnn/utility/TransformIterator.hpp
@@ -34,12 +34,12 @@
 
     TransformIterator operator=(TransformIterator const& transformIterator)
     {
-        return{ transformIterator.it, transformIterator.fn};
+        return { transformIterator.m_it, transformIterator.m_fn };
     }
 
     TransformIterator operator=(TransformIterator&& transformIterator)
     {
-        return{ transformIterator.it, transformIterator.fn};
+        return { transformIterator.m_it, transformIterator.m_fn };
     }
 
     TransformIterator operator++() {++m_it; return *this;}