Fix hang in config file generation (#101)

- Updated Timemory module.
- Fixes a crash when running rocprof-sys-avail -G without explicitly providing -F <format>. The default value of "txt" was not being used.
- Define "choices" before "default" when defining the "--config-format" argument in the parser.
This commit is contained in:
David Galiffi
2025-02-11 17:36:31 -05:00
committed by GitHub
parent 697d1ac02f
commit 3833c8d162
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -454,8 +454,8 @@ main(int argc, char** argv)
parser.add_argument({ "-F", "--config-format" }, "Configuration file format")
.min_count(1)
.max_count(3)
.set_default(std::set<std::string>{ "txt" })
.choices({ "txt", "json", "xml" })
.set_default(std::set<std::string>{ "txt" })
.dtype("filename")
.action([&_config_fmts](parser_t& _p) {
_config_fmts = _p.get<std::set<std::string>>("config-format");