diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-08-03 13:42:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-03 13:42:28 +0300 |
commit | e9534cc15af29e212ceb34cdb1a41147d1d231d8 (patch) | |
tree | fefb8e8b683c57411aacf9226df8a61fc7b9f06e | |
parent | 35bc65deece98c0f698c5b0d6f464a4e32d16edf (diff) | |
download | ydb-e9534cc15af29e212ceb34cdb1a41147d1d231d8.tar.gz |
FIX_UNUSED_PARAMETR_PLS=1 (devtools request) (#7396)
-rw-r--r-- | build/internal/ya.conf | 2 | ||||
-rw-r--r-- | ydb/mvp/meta/mvp.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/internal/ya.conf b/build/internal/ya.conf index 02bd04e89d..483fbe32b1 100644 --- a/build/internal/ya.conf +++ b/build/internal/ya.conf @@ -23,4 +23,4 @@ USE_IDN = "static" APPLE_SDK_LOCAL = "yes" CFLAGS = "-fno-omit-frame-pointer" # TODO: uncomment after warnings fix -# FIX_UNUSED_PARAMETR_PLS = "1" # 31 jul 2024. Transitional flag for protobuf fix, DTCC-2275
\ No newline at end of file +FIX_UNUSED_PARAMETR_PLS = "1" # 2 aug 2024. Transitional flag for protobuf fix, DTCC-2275
\ No newline at end of file diff --git a/ydb/mvp/meta/mvp.cpp b/ydb/mvp/meta/mvp.cpp index 817ed9b1d1..bbf1450272 100644 --- a/ydb/mvp/meta/mvp.cpp +++ b/ydb/mvp/meta/mvp.cpp @@ -186,7 +186,7 @@ void TMVP::TryGetGenericOptionsFromConfig( TString& sslCertificateFile, bool& useStderr, bool& mlock, - NMvp::EAccessServiceType& accessServiceType + NMvp::EAccessServiceType& /*accessServiceType*/ ) { if (!config["generic"]) { return; |