Skip to content
Snippets Groups Projects
Commit e48748f3 authored by Lars Bilke's avatar Lars Bilke
Browse files

Merge branch 'fix-win-wheel' into 'master'

[ML] Add MATHLIB_EXPORT to full_precision.

See merge request ogs/ogs!4920
parents 8d898bae 70b3d9c0
No related branches found
No related tags found
No related merge requests found
......@@ -15,16 +15,18 @@
#include <Eigen/Core>
#include <concepts>
#include "mathlib_export.h"
namespace MathLib
{
struct EigenIOFormat
{
static const Eigen::IOFormat full_precision;
static MATHLIB_EXPORT const Eigen::IOFormat full_precision;
};
} // namespace MathLib
template <typename T>
requires std::derived_from<T, Eigen::DenseBase<T>>
requires std::derived_from<T, Eigen::DenseBase<T>>
struct fmt::formatter<T> : fmt::ostream_formatter
{
auto format(T const& value, fmt::format_context& ctx) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment