From 003f01a150b29ebb7df19c7b408638a678ce3eb6 Mon Sep 17 00:00:00 2001 From: Shinichi Umegane Date: Mon, 25 Nov 2024 18:55:17 +0900 Subject: [PATCH] cleanup: clang-tidy --- src/limestone/datastore_format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/limestone/datastore_format.cpp b/src/limestone/datastore_format.cpp index ab4cf97..f254c85 100644 --- a/src/limestone/datastore_format.cpp +++ b/src/limestone/datastore_format.cpp @@ -176,7 +176,7 @@ void check_and_migrate_logdir_format(const boost::filesystem::path& logdir) { int acquire_manifest_lock(const boost::filesystem::path& logdir) { boost::filesystem::path manifest_path = logdir / std::string(manifest_file_name); - int fd = ::open(manifest_path.string().c_str(), O_RDWR); // NOLINT(cppcoreguidelines-pro-type-vararg) + int fd = ::open(manifest_path.string().c_str(), O_RDWR); // NOLINT(hicpp-vararg, cppcoreguidelines-pro-type-vararg) if (fd == -1) { return -1; }