Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for older versions of intel compiler #1518

Merged
merged 1 commit into from
Jan 15, 2020
Merged

Commits on Jan 14, 2020

  1. Fix for older versions of intel compiler

    The intel-17 and intel-18 compilers seem to require that `u` be `const`:
    ```
    /src/fmt/format.h(226): warning fmtlib#437: reference to local variable of enclosing function is not allowed
            char data[sizeof(u)];
    ```
    If `u` is declared as `const auto u =1u` instead of just `auto u=1u`, the file compiles with no warnings.
    gsjaardema authored Jan 14, 2020
    Configuration menu
    Copy the full SHA
    41c91d4 View commit details
    Browse the repository at this point in the history