Skip to content

Commit

Permalink
Tentative MSVC fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Dec 7, 2023
1 parent 4256f69 commit 3a6d5e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/taylor_00.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2174,10 +2174,10 @@ const std::vector<T> &taylor_adaptive<T>::update_d_output(T time, bool rel_time)
#define HEYOKA_TAYLOR_ADAPTIVE_INST(F) \
template class HEYOKA_DLL_PUBLIC detail::taylor_adaptive_base<F, taylor_adaptive<F>>; \
template class HEYOKA_DLL_PUBLIC taylor_adaptive<F>; \
template HEYOKA_DLL_PUBLIC void taylor_adaptive<F>::finalise_ctor_impl( \
template void taylor_adaptive<F>::finalise_ctor_impl( \
const std::vector<expression> &, std::vector<F>, std::optional<F>, std::optional<F>, bool, bool, \
std::vector<F>, std::vector<t_event_t>, std::vector<nt_event_t>, bool, std::optional<long long>); \
template HEYOKA_DLL_PUBLIC void taylor_adaptive<F>::finalise_ctor_impl( \
template void taylor_adaptive<F>::finalise_ctor_impl( \
const std::vector<std::pair<expression, expression>> &, std::vector<F>, std::optional<F>, std::optional<F>, \
bool, bool, std::vector<F>, std::vector<t_event_t>, std::vector<nt_event_t>, bool, std::optional<long long>);
// NOLINTEND
Expand Down

0 comments on commit 3a6d5e9

Please sign in to comment.