ydb-platform / ydb

YDB is an open source Distributed SQL Database that combines high availability and scalability with strong consistency and ACID transactions
https://ydb.tech
Apache License 2.0
3.83k stars 532 forks source link

Style: store functions and headers nearby #3641

Closed weres-sa closed 1 week ago

weres-sa commented 5 months ago

Credentials provider factories CreateIamJwtFileCredentialsProviderFactory, CreateIamJwtParamsCredentialsProviderFactory , CreateIamOAuthCredentialsProviderFactory are declared in https://github.com/ydb-platform/ydb/blob/main/ydb/public/sdk/cpp/client/iam/common/iam.h and implemented https://github.com/ydb-platform/ydb/blob/main/ydb/public/sdk/cpp/client/iam/iam.cpp

Style guide requires us to place function declarations and their implementations side by side.

weres-sa commented 5 months ago

https://github.com/ydb-platform/ydb/pull/1623

weres-sa commented 1 week ago

Pull request merged