Skip to content
Snippets Groups Projects
Commit c5bb3792 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[MaL] Added output formatter for Eigen dense types

parent d38add66
No related branches found
No related tags found
No related merge requests found
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#pragma once
#include <fmt/ostream.h>
#include <Eigen/Core>
#include <concepts>
template <typename T>
requires std::derived_from<T, Eigen::DenseBase<T>>
struct fmt::formatter<T> : fmt::ostream_formatter
{
};
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