Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
Signed-off-by: shaoting-huang <[email protected]>
  • Loading branch information
shaoting-huang committed Jan 19, 2025
1 parent ae3772b commit 9804212
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/include/milvus-storage/filesystem/azure/azure_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace milvus_storage {

class AzureFileSystemProducer : public FileSystemProducer {
public:
AzureFileSystemProducer() {};
AzureFileSystemProducer(){};

Result<std::shared_ptr<arrow::fs::FileSystem>> Make(const StorageConfig& storage_config,
std::string* out_path) override {
Expand Down
2 changes: 1 addition & 1 deletion cpp/include/milvus-storage/filesystem/s3/s3_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace milvus_storage {

class S3FileSystemProducer : public FileSystemProducer {
public:
S3FileSystemProducer() {};
S3FileSystemProducer(){};

Result<std::shared_ptr<arrow::fs::FileSystem>> Make(const StorageConfig& storage_config,
std::string* out_path) override {
Expand Down
2 changes: 1 addition & 1 deletion cpp/include/milvus-storage/filter/filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Filter {
return Status::OK();
}

virtual ~Filter() {};
virtual ~Filter(){};

protected:
std::string column_name_;
Expand Down

0 comments on commit 9804212

Please sign in to comment.