refs #413 Doxygen fixes.

(cherry picked from commit da107e6c5a90744c02bb61bc6be6ec026081b409)
This commit is contained in:
Mathew Sutcliffe
2015-05-08 21:52:29 +01:00
parent 27ce1eb914
commit b6f8654312
2 changed files with 5 additions and 5 deletions

View File

@@ -39,16 +39,15 @@ namespace BlackMisc
namespace Private
{
//! \private SFINAE for CValueObject constructor to avoid being selected as a viable copy constructor.
//! @{
template <typename...> struct DecayFirst
{
typedef void type;
};
//! \private
template <typename T, typename... Ts> struct DecayFirst<T, Ts...>
{
typedef typename std::decay<T>::type type;
};
//! @}
}
/*!