mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
refs #697 Type traits renamed with T prefix.
This commit is contained in:
@@ -31,7 +31,7 @@ namespace BlackMisc
|
||||
* \private Identity type trait.
|
||||
*/
|
||||
template <typename T>
|
||||
struct Identity
|
||||
struct TIdentity
|
||||
{
|
||||
using type = T;
|
||||
};
|
||||
@@ -40,7 +40,7 @@ namespace BlackMisc
|
||||
* \private Trick to force a non-deduced context during template argument type deduction.
|
||||
*/
|
||||
template <typename T>
|
||||
using NonDeduced = typename Identity<T>::type;
|
||||
using TNonDeduced = typename TIdentity<T>::type;
|
||||
|
||||
/*!
|
||||
* \private QObject subclass used by CCached<T> class template for signal/slot communication with CValueCache.
|
||||
|
||||
Reference in New Issue
Block a user