Commit f975d3c5 authored by Uladzislau Paulovich's avatar Uladzislau Paulovich Committed by Facebook Github Bot

Add missing uint32 type to folly::ProgramOptions::gFlagAdders

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
parent af5ec753
......@@ -237,6 +237,7 @@ const std::unordered_map<std::string, FlagAdder> gFlagAdders = {
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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment