From f356905c37c9301a7680490afdf6774100c99ea1 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Fri, 5 Jul 2019 16:01:08 +0100 Subject: Fix member name in PadDescriptor * Renamed m_padValue to m_PadValue to bring it in line with our naming conventions Signed-off-by: Aron Virginas-Tar Change-Id: I071aa42c9be495462c64697e5a923a5ec55de146 --- include/armnn/Descriptors.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/armnn/Descriptors.hpp') diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp index 9175239aa8..cb76615889 100644 --- a/include/armnn/Descriptors.hpp +++ b/include/armnn/Descriptors.hpp @@ -631,11 +631,11 @@ struct MeanDescriptor /// A PadDescriptor for the PadLayer. struct PadDescriptor { - PadDescriptor() : m_padValue(0) + PadDescriptor() : m_PadValue(0) {} PadDescriptor(const std::vector>& padList, const float& padValue = 0) - : m_PadList(padList), m_padValue(padValue) + : m_PadList(padList), m_PadValue(padValue) {} /// @brief Specifies the padding for input dimension. @@ -645,7 +645,7 @@ struct PadDescriptor std::vector> m_PadList; /// Optional value to use for padding, defaults to 0 - float m_padValue; + float m_PadValue; }; /// A StridedSliceDescriptor for the StridedSliceLayer. -- cgit v1.2.1