mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
d5d60c6e64
Allows us to migrate off of printf specifiers and have more type-safe formatting facilities. It also allows for custom type support as well. fmt is also on track to have part of it standardized within C++2a, so this will also lessen the transitional work necessary later on by allowing new code to use it. This simply adds the library but doesn't do anything with it yet.
13 lines
316 B
ReStructuredText
Executable File
13 lines
316 B
ReStructuredText
Executable File
Contributing to fmt
|
|
===================
|
|
|
|
All C++ code must adhere to `Google C++ Style Guide
|
|
<https://google.github.io/styleguide/cppguide.html>`_ with the following
|
|
exceptions:
|
|
|
|
* Exceptions are permitted
|
|
* snake_case should be used instead of UpperCamelCase for function and type
|
|
names
|
|
|
|
Thanks for contributing!
|