From 5ca9f1c83d5b64a9e5ef6ed9f1d160f43bcac476 Mon Sep 17 00:00:00 2001 From: orignal Date: Mon, 25 Nov 2024 20:52:30 -0500 Subject: [PATCH] Updated Coding guidelines (markdown) --- Coding-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-guidelines.md b/Coding-guidelines.md index 5f562ef..9eeca10 100644 --- a/Coding-guidelines.md +++ b/Coding-guidelines.md @@ -1,5 +1,5 @@ 1. Files from libi2pd must not depend on files from libi2pdclient and i2pd. Files from libi2pdclient can depend on files from libi2pd but not on i2pd. You can find it in the fileslist.mk -2. You can use C++17, but make sure code is buildable by gcc 7 +2. You can use C++17, but make sure code is buildable by gcc 8 3. Don't reinvent a wheel. Try to find appropriate solution in std or boost. If a feature is presented in both, use std. 4. Don't bring any additional dependency without discussion. However boost, openssl and zlib can be used in any amount. 5. No requirements for formatting or coding style. You can do whatever you like.