From f12b92ebd8cf2d3dda08fbe766c0ddb5c3dc69ae Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Thu, 20 Nov 2025 10:16:01 -0800 Subject: [PATCH] markdown: contribute: add to C++ style guildeline Google's "no throw / no exceptions" rule is highly personalized (to Google) and does not apply here. --- markdown/How-do-I-contribute.md | 1 + 1 file changed, 1 insertion(+) diff --git a/markdown/How-do-I-contribute.md b/markdown/How-do-I-contribute.md index f487f25..56e0cec 100644 --- a/markdown/How-do-I-contribute.md +++ b/markdown/How-do-I-contribute.md @@ -80,6 +80,7 @@ Before sending a pull request: 3. As for style guidelines, these are recommended: - [Bash](https://google.github.io/styleguide/shellguide.html) - [C++](https://google.github.io/styleguide/cppguide.html) + * Ignore their rule for [no `throw`'ing / no `exceptions`](https://google.github.io/styleguide/cppguide.html#Exceptions) - [PHP](https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/doc/ruleSets/PhpCsFixer.rst) 4. If you can, please document the code in Doxygen style where applicable and run `doxygen gen` to see your code documentation.