From 0ed7bb85ce02eb37cbbcd72519a11df6bebc0e11 Mon Sep 17 00:00:00 2001 From: Daniel Mossaband Date: Thu, 15 Oct 2020 23:51:39 -0700 Subject: [PATCH] Change clang-format requirement from 6.0 to 10.0 --- Contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Contributing.md b/Contributing.md index 616c0c0..c8a6580 100644 --- a/Contributing.md +++ b/Contributing.md @@ -7,8 +7,8 @@ If you believe you have a valid issue report, please post text or a screenshot f # Contributing yuzu is a brand new project, so we have a great opportunity to keep things clean and well organized early on. As such, coding style is very important when making commits. We run clang-format on our CI to check the code. Please use it to format your code when contributing. However, it doesn't cover all the rules below. Some of them aren't very strict rules since we want to be flexible and we understand that under certain circumstances some of them can be counterproductive. Just try to follow as many of them as possible. -# Using clang format (version 6.0) -When generating the native build script for your toolset, cmake will try to find the correct version of clang format (or will download it on windows). Before running cmake, please install clang format version 6.0 for your platform as follows: +# Using clang format (version 10.0) +When generating the native build script for your toolset, cmake will try to find the correct version of clang format (or will download it on windows). Before running cmake, please install clang format version 10.0 for your platform as follows: * Windows: do nothing; cmake will download a pre built binary for MSVC and MINGW. MSVC users can additionally install a clang format Visual Studio extension to add features like format on save. * macOS: run `brew install clang-format`.