diff options
| author | s-berdnikov <[email protected]> | 2026-01-28 00:30:35 +0300 |
|---|---|---|
| committer | s-berdnikov <[email protected]> | 2026-01-28 00:55:05 +0300 |
| commit | df0d722aa43c7d4ef0fcd2057b5ad51797cc3069 (patch) | |
| tree | 4e9379ee5125b92167789c2e1adadf23cbdba4e3 /yt/cpp/mapreduce/tests | |
| parent | 9acc3e6d92e7bd213580a26e627d41a1af3c0384 (diff) | |
Normalize `operator.*` spelling in YT and YP
As of the date of this PR, there are 4 different ways to spell parenthesis operator in YT
* `operator.*(args...)` - 1435 occasions
* `operator .* (args...)` - 483 occasions
* `operator.* (args...)` - 75 occasions
* `operator .*(args...)` - 63 occasions
As is apparent from this statistics, the first way is the most popular by far (70% of all matches). Furthermore, it is the most consistent with YT style guide <https://nda.ya.ru/t/YOfm_T4z7Syke2>.
commit_hash:d88f1a8d82c91cfb34d5f4ba472d341fb9ca6b82
Diffstat (limited to 'yt/cpp/mapreduce/tests')
| -rw-r--r-- | yt/cpp/mapreduce/tests/yt_unittest_lib/yt_unittest_lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/tests/yt_unittest_lib/yt_unittest_lib.h b/yt/cpp/mapreduce/tests/yt_unittest_lib/yt_unittest_lib.h index 9687b45f1ff..46215ed5d0a 100644 --- a/yt/cpp/mapreduce/tests/yt_unittest_lib/yt_unittest_lib.h +++ b/yt/cpp/mapreduce/tests/yt_unittest_lib/yt_unittest_lib.h @@ -98,7 +98,7 @@ struct TOwningYaMRRow operator TYaMRRow() const; }; -bool operator == (const TOwningYaMRRow& row1, const TOwningYaMRRow& row2); +bool operator==(const TOwningYaMRRow& row1, const TOwningYaMRRow& row2); //////////////////////////////////////////////////////////////////////////////// |
