Add missing uint32 type to folly::ProgramOptions::gFlagAdders
authorUladzislau Paulovich <ulad@fb.com>
Wed, 21 Jun 2017 13:19:44 +0000 (06:19 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Wed, 21 Jun 2017 13:20:59 +0000 (06:20 -0700)
Summary: Absence of "uint32" type in gFlagAdders map breaks all apps that use gflags of this type (i.e. define a flag with "DEFINE_uint32").

Reviewed By: WillerZ

Differential Revision: D5286720

fbshipit-source-id: c02bd959cb9ea9a47fba1e01429181ba09edf5dd

folly/experimental/ProgramOptions.cpp

index 73c471ffd2d3d5d493251733ff735a6b35c0ac3f..842cfbca8b802df58d110d92aebf5f65c7efc6c9 100644 (file)
@@ -237,6 +237,7 @@ const std::unordered_map<std::string, FlagAdder> gFlagAdders = {
   X("bool",   bool)
   X("int32",  int32_t)
   X("int64",  int64_t)
   X("bool",   bool)
   X("int32",  int32_t)
   X("int64",  int64_t)
+  X("uint32", uint32_t)
   X("uint64", uint64_t)
   X("double", double)
   X("string", std::string)
   X("uint64", uint64_t)
   X("double", double)
   X("string", std::string)