Skip to content

Commit

Permalink
Eliminate overflow error
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Dec 28, 2023
1 parent dc8bd8c commit aafc1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RefactorTest/CreateMultiVariableDeclaration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void TestCreateMultiVariableDeclaration()
stj = sti;

// #TEST#: CMVD4 Create multi-variable declaration from next two lines
std::vector<float> vi(3);
std::vector<float> vi(4);
std::vector<float> vj(4);
vi = vj;

Expand Down

0 comments on commit aafc1e9

Please sign in to comment.