diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-22 23:58:15 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-23 00:08:35 +0300 |
commit | 3ceb82bd0451a098f15e2b83c46005c95d7e3048 (patch) | |
tree | 1e239577ddd1a48964ffa0a9afef1cc5ced8abaf /util | |
parent | 770ab0b6bc25adf6a5282f70ac856d222f273ff1 (diff) | |
download | ydb-3ceb82bd0451a098f15e2b83c46005c95d7e3048.tar.gz |
Intermediate changes
commit_hash:d0db92345dc96a43a16424238c1eb2812040a13d
Diffstat (limited to 'util')
-rw-r--r-- | util/README.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/util/README.md b/util/README.md index 496efa633c..d107618270 100644 --- a/util/README.md +++ b/util/README.md @@ -7,12 +7,6 @@ Style guide for the util folder is a stricter version of * all {} must be in K&R style * &, * tied closer to a type, not to variable * always use `using` not `typedef` - * even a single line block must be in braces {}: - ``` - if (A) { - B(); - } - ``` * _ at the end of private data member of a class - `First_`, `Second_` * every .h file must be accompanied with corresponding .cpp to avoid a leakage and check that it is self contained * prohibited to use `printf`-like functions @@ -66,5 +60,5 @@ To limit the incoming review request queue size, util reviewers follow these rul Review requests discarded as stale may be reopened or resubmitted by any committer willing to push them to completion. -**Note:** It's an author's duty to push the review request to completion. +**Note:** It's an author's duty to push the review request to completion. If util reviewers stop responding to updates, they should be politely pinged via appropriate means of communication. |