Skip to content

Commit

Permalink
Remove extra semicolon (facebook#12017)
Browse files Browse the repository at this point in the history
Summary:
As titled.

Pull Request resolved: facebook#12017

Reviewed By: hx235

Differential Revision: D50670406

Pulled By: jowlyzhang

fbshipit-source-id: 28b3acd930ee676d78ebb47144047ce233fc11c5
  • Loading branch information
jowlyzhang authored and facebook-github-bot committed Oct 26, 2023
1 parent 52be8f5 commit 526f36b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rocksdb/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ class WritableFile {
/*
* Get the size of valid data in the file.
*/
virtual uint64_t GetFileSize() { return 0; };
virtual uint64_t GetFileSize() { return 0; }

/*
* Get and set the default pre-allocation block size for writes to
Expand Down

0 comments on commit 526f36b

Please sign in to comment.