From c48bae0968c1da7a4c179d1bb45c7de175d22cd9 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Mon, 22 Nov 2021 09:36:53 -0800 Subject: [PATCH] Fix internal build error (#9195) Summary: Internal build reported: ``` rocksdb/listener.h:470:3: error: extra ';' inside a struct [-Werror,-Wextra-semi] ``` Pull Request resolved: https://github.com/facebook/rocksdb/pull/9195 Test Plan: import to fbcode and compile. Reviewed By: akankshamahajan15 Differential Revision: D32590138 Pulled By: riversand963 fbshipit-source-id: ca4ed9cca210a1a9a12d3de17c789ef9151c57e8 --- include/rocksdb/listener.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/rocksdb/listener.h b/include/rocksdb/listener.h index 6e2971e5d..304e8928d 100644 --- a/include/rocksdb/listener.h +++ b/include/rocksdb/listener.h @@ -467,7 +467,6 @@ struct IOErrorInfo { std::string file_path; size_t length; uint64_t offset; - ; }; // EventListener class contains a set of callback functions that will