Skip to content

Commit

Permalink
Fix clang compile error under Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zhipeng-jia committed Dec 24, 2015
1 parent 73b175a commit ec2664f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/options_sanity_check.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum OptionsSanityCheckLevel : unsigned char {

// The sanity check level for DB options
static const std::unordered_map<std::string, OptionsSanityCheckLevel>
sanity_level_db_options;
sanity_level_db_options {};

// The sanity check level for column-family options
static const std::unordered_map<std::string, OptionsSanityCheckLevel>
Expand All @@ -35,7 +35,7 @@ static const std::unordered_map<std::string, OptionsSanityCheckLevel>

// The sanity check level for block-based table options
static const std::unordered_map<std::string, OptionsSanityCheckLevel>
sanity_level_bbt_options;
sanity_level_bbt_options {};

OptionsSanityCheckLevel DBOptionSanityCheckLevel(
const std::string& options_name);
Expand Down

0 comments on commit ec2664f

Please sign in to comment.