Skip to content

Commit

Permalink
Fix signed/unsigned compare warning in bdljsn_json.t (#4978)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marshall Clow authored and GitHub Enterprise committed Sep 25, 2024
1 parent 0da4a13 commit d9e55a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions groups/bdl/bdljsn/bdljsn_json.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12386,8 +12386,9 @@ int main(int argc, char *argv[])

bslma::DefaultAllocatorGuard dag(&da);

Obj mX(&oa);
const size_t numBlocks = oa.numBlocksTotal();
Obj mX(&oa);
const bsls::Types::Int64 numBlocks = oa.numBlocksTotal();

bsl::string_view short_sv = "ABC";
bsl::string_view long_sv = "ABCDEFGHIJKLMNOPQRSTUVWXYZ012345";

Expand Down

0 comments on commit d9e55a5

Please sign in to comment.