Skip to content

Conversation

@sbaldu
Copy link
Collaborator

@sbaldu sbaldu commented Feb 6, 2025

No description provided.

if (row > m_rowOffsets.size() - 2) {
for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) {
m_rowOffsets.push_back(m_rowOffsets.back() + 1);
auto n = row - m_rowOffsets.size() + 2;

Check notice

Code scanning / Cppcheck (reported by Codacy)

MISRA 10.4 rule Note

MISRA 10.4 rule
for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) {
m_rowOffsets.push_back(m_rowOffsets.back() + 1);
auto n = row - m_rowOffsets.size() + 2;
for (auto i = 0ul; i < n - 1; ++i) {

Check notice

Code scanning / Cppcheck (reported by Codacy)

MISRA 7.3 rule Note

MISRA 7.3 rule
for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) {
m_rowOffsets.push_back(m_rowOffsets.back() + 1);
auto n = row - m_rowOffsets.size() + 2;
for (auto i = 0ul; i < n - 1; ++i) {

Check notice

Code scanning / Cppcheck (reported by Codacy)

MISRA 12.1 rule Note

MISRA 12.1 rule
for (auto i = 0ul; i < row - m_rowOffsets.size() + 2; ++i) {
m_rowOffsets.push_back(m_rowOffsets.back() + 1);
auto n = row - m_rowOffsets.size() + 2;
for (auto i = 0ul; i < n - 1; ++i) {

Check notice

Code scanning / Cppcheck (reported by Codacy)

MISRA 10.4 rule Note

MISRA 10.4 rule
@codecov
Copy link

codecov bot commented Feb 6, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.47%. Comparing base (c575d29) to head (aa8d74b).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #258      +/-   ##
==========================================
+ Coverage   90.40%   90.47%   +0.07%     
==========================================
  Files          37       37              
  Lines        4855     4893      +38     
  Branches      457      457              
==========================================
+ Hits         4389     4427      +38     
  Misses        466      466              
Flag Coverage Δ
unittests 90.47% <100.00%> (+0.07%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@Grufoony Grufoony merged commit 0b2d647 into main Feb 7, 2025
16 checks passed
@Grufoony Grufoony deleted the fix-bug branch February 7, 2025 08:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants