From 9804212336ec89e55cc99bdfae8d29d23c920a40 Mon Sep 17 00:00:00 2001 From: shaoting-huang Date: Sun, 19 Jan 2025 17:24:38 +0800 Subject: [PATCH] fix format Signed-off-by: shaoting-huang --- cpp/include/milvus-storage/filesystem/azure/azure_fs.h | 2 +- cpp/include/milvus-storage/filesystem/s3/s3_fs.h | 2 +- cpp/include/milvus-storage/filter/filter.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/include/milvus-storage/filesystem/azure/azure_fs.h b/cpp/include/milvus-storage/filesystem/azure/azure_fs.h index 8983d9d..d3f2248 100644 --- a/cpp/include/milvus-storage/filesystem/azure/azure_fs.h +++ b/cpp/include/milvus-storage/filesystem/azure/azure_fs.h @@ -25,7 +25,7 @@ namespace milvus_storage { class AzureFileSystemProducer : public FileSystemProducer { public: - AzureFileSystemProducer() {}; + AzureFileSystemProducer(){}; Result> Make(const StorageConfig& storage_config, std::string* out_path) override { diff --git a/cpp/include/milvus-storage/filesystem/s3/s3_fs.h b/cpp/include/milvus-storage/filesystem/s3/s3_fs.h index 4f336fb..b6bbc20 100644 --- a/cpp/include/milvus-storage/filesystem/s3/s3_fs.h +++ b/cpp/include/milvus-storage/filesystem/s3/s3_fs.h @@ -26,7 +26,7 @@ namespace milvus_storage { class S3FileSystemProducer : public FileSystemProducer { public: - S3FileSystemProducer() {}; + S3FileSystemProducer(){}; Result> Make(const StorageConfig& storage_config, std::string* out_path) override { diff --git a/cpp/include/milvus-storage/filter/filter.h b/cpp/include/milvus-storage/filter/filter.h index 7805ea6..f4fbb80 100644 --- a/cpp/include/milvus-storage/filter/filter.h +++ b/cpp/include/milvus-storage/filter/filter.h @@ -46,7 +46,7 @@ class Filter { return Status::OK(); } - virtual ~Filter() {}; + virtual ~Filter(){}; protected: std::string column_name_;