aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/utility/PolymorphicDowncast.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/utility/PolymorphicDowncast.hpp')
-rw-r--r--include/armnn/utility/PolymorphicDowncast.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/armnn/utility/PolymorphicDowncast.hpp b/include/armnn/utility/PolymorphicDowncast.hpp
index d529867474..b4a5cad314 100644
--- a/include/armnn/utility/PolymorphicDowncast.hpp
+++ b/include/armnn/utility/PolymorphicDowncast.hpp
@@ -30,11 +30,11 @@ namespace armnn
template<typename DestType, typename SourceType>
-DestType polymorphic_downcast(SourceType value)
+DestType PolymorphicDowncast(SourceType value)
{
static_assert(std::is_pointer<SourceType>::value &&
std::is_pointer<DestType>::value,
- "polymorphic_downcast only works with pointer types.");
+ "PolymorphicDowncast only works with pointer types.");
ARMNN_POLYMORPHIC_CAST_CHECK(dynamic_cast<DestType>(value) == static_cast<DestType>(value));
return static_cast<DestType>(value);