mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 17:35:34 +08:00
refs #624 Use std alias traits.
This commit is contained in:
@@ -47,7 +47,7 @@ namespace BlackMisc
|
||||
//! \private
|
||||
template <typename T, typename... Ts> struct DecayFirst<T, Ts...>
|
||||
{
|
||||
typedef typename std::decay<T>::type type;
|
||||
using type = std::decay_t<T>;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user