You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The header file sst/core/serialization/impl/serialize_bitset.h should not be directly included as it is not part of the stable public API. The file is included in sst/core/serialization/serialize.h"
"The header file sst/core/serialization/impl/serialize_optional.h should not be directly included as it is not part of the stable public API. The file is included in sst/core/serialization/serialize.h"
"The header file sst/core/serialization/impl/serialize_valarray.h should not be directly included as it is not part of the stable public API. The file is included in sst/core/serialization/serialize.h"
18
+
#endif
19
+
20
+
#include"sst/core/serialization/serializer.h"
21
+
22
+
#include<string>
23
+
#include<type_traits>
24
+
#include<valarray>
25
+
26
+
namespaceSST::Core::Serialization {
27
+
28
+
// Whether a type is a std::valarray type
29
+
template <typename>
30
+
constexprbool is_valarray_v = false;
31
+
32
+
// We must make sure that T is trivially copyable and standard layout type, although this is almost always true
0 commit comments