From e9fdabe27898b6b22e6c0853a5b19911ef2c85c4 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Sun, 5 Oct 2014 03:10:10 +0400 Subject: [PATCH] A minor style fix - typename instead of class in a template --- libuavcan/include/uavcan/util/templates.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libuavcan/include/uavcan/util/templates.hpp b/libuavcan/include/uavcan/util/templates.hpp index b0eab50b68..8c3b3028b2 100644 --- a/libuavcan/include/uavcan/util/templates.hpp +++ b/libuavcan/include/uavcan/util/templates.hpp @@ -93,10 +93,10 @@ struct UAVCAN_EXPORT Select /** * Remove reference as in */ -template struct RemoveReference { typedef T Type; }; -template struct RemoveReference { typedef T Type; }; +template struct RemoveReference { typedef T Type; }; +template struct RemoveReference { typedef T Type; }; #if UAVCAN_CPP_VERSION > UAVCAN_CPP03 -template struct RemoveReference { typedef T Type; }; +template struct RemoveReference { typedef T Type; }; #endif /**