From d4a91751f712c0c8530367039d0445d1cfd40af2 Mon Sep 17 00:00:00 2001 From: Ankita Victor Date: Thu, 11 Apr 2024 00:56:49 +0530 Subject: [PATCH] Address PR comments --- velox/common/file/FileSystems.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/velox/common/file/FileSystems.h b/velox/common/file/FileSystems.h index ae7ec0d18013..33cdbd88e360 100644 --- a/velox/common/file/FileSystems.h +++ b/velox/common/file/FileSystems.h @@ -43,8 +43,8 @@ struct FileOptions { std::unordered_map values; memory::MemoryPool* pool{nullptr}; - std::optional fileSize{ - std::nullopt}; // If specified then can be trusted to be the file size. + /// If specified then can be trusted to be the file size. + std::optional fileSize; }; /// An abstract FileSystem