OGS
FormattingUtils.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <spdlog/fmt/bundled/ostream.h>
14
15#include <Eigen/Core>
16#include <concepts>
17
18template <typename T>
19requires std::derived_from<T, Eigen::DenseBase<T>>
20struct fmt::formatter<T> : fmt::ostream_formatter
21{
22};