diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-25 12:41:34 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-03-25 12:41:34 +0300 |
commit | 14e2fdd4fc5515e960081d29a0b33ad17471f074 (patch) | |
tree | 20fed691a71f390b6dfb0c578a15eade4e897fa5 | |
parent | 39a7404e6cddb2053a87f86935cda566c54bd4e6 (diff) |
Drop redundant casts for tracing booleans in brep::ci::build_queued()
-rw-r--r-- | mod/mod-ci.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mod-ci.cxx b/mod/mod-ci.cxx index c067f70..5974d45 100644 --- a/mod/mod-ci.cxx +++ b/mod/mod-ci.cxx @@ -400,8 +400,8 @@ build_queued (const tenant_service&, l2 ([&]{trace << "initial_state: " << (initial_state ? to_string (*initial_state) : "none") << ", hints " - << static_cast<size_t> (hints.single_package_version) << ' ' - << static_cast<size_t> (hints.single_package_config);}); + << hints.single_package_version << ' ' + << hints.single_package_config;}); return [&bs, initial_state] (const tenant_service& ts) { |