fmt/include
denchat 172b031a50
Suppressing clang complain "forward declaration"
Clang complains about "forward declaration of template entity" of all basic_data<>'s members that do not have definitions in `format.h`

```
C:/Users/User/AppData/Roaming/fmt-master/include\fmt/format.h:956:25: warning: instantiation of variable 'fmt::detail::basic_data<>::powers_of_10_64' required here, but no definition is available [-Wundefined-var-template]
  static const uint64_t powers_of_10_64[];
                        ^
C:/Users/User/AppData/Roaming/fmt-master/include\fmt/format.h:956:25: note: forward declaration of template entity is here
C:/Users/User/AppData/Roaming/fmt-master/include\fmt/format.h:956:25: note: add an explicit instantiation declaration to suppress this warning if 'fmt::detail::basic_data<>::powers_of_10_64' is explicitly instantiated in another translation unit
```
2021-04-17 21:39:57 +07:00
..
fmt Suppressing clang complain "forward declaration" 2021-04-17 21:39:57 +07:00