Skip to content

Commit f810fa2

Browse files
Classdesc doesn't support variadic templates at this point in time.
1 parent d6b3b6e commit f810fa2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pack_base.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,13 @@ namespace classdesc
477477
/// for use in metaprogramming support. Indicate that a given type
478478
/// is supported explicitly
479479
template <class T> struct pack_supported:
480-
public Or<is_fundamental<T>,is_container<T>,is_excluded<T> > {};
480+
public Or<
481+
Or<
482+
is_fundamental<T>,
483+
is_container<T>
484+
>,
485+
is_excluded<T>
486+
> {};
481487

482488
#ifndef THROW_PTR_EXCEPTION
483489
template <class T>

0 commit comments

Comments
 (0)