Git Product home page Git Product logo

Comments (3)

vitaut avatar vitaut commented on August 30, 2024 1

This is expected. If you provide a formatter for a range type you need to opt it out of range formatting rather than fiddle with includes: https://godbolt.org/z/3ercdas5z.

from fmt.

TobiSchluter avatar TobiSchluter commented on August 30, 2024 1

Thanks for the quick reply! Not that I would have expected this to be a range type, at least not a general matrix, but I'm aware that Eigen makes some unorthodox choices WRT iterators.

from fmt.

TobiSchluter avatar TobiSchluter commented on August 30, 2024

Here's what I settled on and placed next to the formatter. Maybe this is useful for someone who stumbles on this problem. Compared to Victor's version, it works also when not including ranges.h. The namespace macros are used to get the correctly versioned inline namespace. I'm using false_type because static constexpr const is a bit much for me to process :)

// Need to opt out of range formatting which id's Eigen::Matrix types as ranges if fmt/ranges.h is included.
FMT_BEGIN_NAMESPACE
    // Forward declaration in case fmt/ranges.h is not included.
    template <typename T, typename Char> struct is_range;

    // ... and the opt-out.
    template <typename T>
    struct is_range<T,
        std::enable_if_t<std::is_base_of_v<Eigen::EigenBase<T>, T>, char>>
        : std::false_type
    {};
FMT_END_NAMESPACE

from fmt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.