aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-07-05 16:01:08 +0100
committerÁron Virginás-Tar <aron.virginas-tar@arm.com>2019-07-05 15:39:01 +0000
commitf356905c37c9301a7680490afdf6774100c99ea1 (patch)
tree8a5604f6e4183adcefb16355ff70cce3e6237c6b /include
parent33fa0a66a57ddfd1896478301de7ee047aae5e89 (diff)
downloadarmnn-f356905c37c9301a7680490afdf6774100c99ea1.tar.gz
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 <Aron.Virginas-Tar@arm.com> Change-Id: I071aa42c9be495462c64697e5a923a5ec55de146
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Descriptors.hpp6
1 files changed, 3 insertions, 3 deletions
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<std::pair<unsigned int, unsigned int>>& 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<std::pair<unsigned int, unsigned int>> m_PadList;
/// Optional value to use for padding, defaults to 0
- float m_padValue;
+ float m_PadValue;
};
/// A StridedSliceDescriptor for the StridedSliceLayer.