8 lines
242 B
C
8 lines
242 B
C
|
template<typename> struct MergeSpecializations;
|
||
|
template<typename T> struct MergeSpecializations<T[]> {
|
||
|
typedef int partially_specialized_in_c;
|
||
|
};
|
||
|
template<> struct MergeSpecializations<bool> {
|
||
|
typedef int explicitly_specialized_in_c;
|
||
|
};
|