Commit 290c5214 authored by Dominik Charousset's avatar Dominik Charousset

Fix is_serializable for recursive containers

parent 101a66dc
......@@ -362,6 +362,11 @@ struct is_serializable<T&> : is_serializable<T> {
// nop
};
template <class T>
struct is_serializable<const T> : is_serializable<T> {
// nop
};
template <class T>
struct is_serializable<const T&> : is_serializable<T> {
// nop
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment