Files
fmt/include/fmt
Greg Sjaardema ae3ea156ea 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 #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.
2020-01-14 17:56:06 -08:00
..
2019-11-29 09:37:18 -08:00
2020-01-07 16:11:18 -10:00
2019-07-09 12:18:48 -07:00
2019-11-17 06:22:22 -08:00
2019-12-15 16:43:40 -08:00
2019-12-21 13:10:45 -08:00