Prevent mpfr_float compiling when there variable digits and allocation is allocate_stack.

This commit is contained in:
jzmaddock
2016-05-10 18:06:15 +01:00
parent 8684c4fbcb
commit 351793f93f

View File

@@ -30,6 +30,9 @@ namespace backends{
template <unsigned digits10, mpfr_allocation_type AllocationType = allocate_dynamic>
struct mpfr_float_backend;
template <>
struct mpfr_float_backend<0, allocate_stack>;
} // namespace backends
template <unsigned digits10, mpfr_allocation_type AllocationType>