Files
MeanField/libmeanfield/include/xad_promote_polyfill.h

11 lines
178 B
C
Raw Permalink Normal View History

#pragma once
#include <type_traits>
#if defined(_LIBCPP_VERSION)
namespace std {
template <class... Args>
struct __promote {
using type = double;
};
}
#endif