Add missing uint32 type to folly::ProgramOptions::gFlagAdders
[folly.git] / 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("uint32", uint32_t)
   X("uint64", uint64_t)
   X("double", double)
   X("string", std::string)