Skip to content

Commit

Permalink
#2673 SonarQube: use vector
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Oct 11, 2024
1 parent 5e6aa50 commit b2249ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcode/vx_python3_utils/wchar_argv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ N = len + a.n();

vector<char> s(N, 0);

vector<char *> av((a.n());
vector<char *> av(a.n());

k = 0;

Expand Down

0 comments on commit b2249ea

Please sign in to comment.