Skip to content

Commit

Permalink
[Misc]: Fix -Wpedantic issues
Browse files Browse the repository at this point in the history
Removed random extra semicolons
  • Loading branch information
ad3154 committed Jan 26, 2024
1 parent 82768a0 commit 8c92856
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ namespace isobus
std::function<bool(std::uint16_t, std::uint32_t)> callbackValidateNumericValue; ///< Holds the callback function to validate a numeric value change.
std::shared_ptr<void> numericValueChangeEventHandle; ///< Holds the handle to the numeric value change event listener
};
}; // namespace isobus
} // namespace isobus

#endif // ISOBUS_VIRTUAL_TERMINAL_CLIENT_UPDATE_HELPER_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ namespace isobus
}
}
}
}; // namespace isobus
} // namespace isobus
2 changes: 1 addition & 1 deletion test/helpers/control_function_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ namespace test_helpers
return std::make_shared<WrappedInternalControlFunction>(NAME(0), address, 0);
}

}; // namespace test_helpers
} // namespace test_helpers
2 changes: 1 addition & 1 deletion test/helpers/control_function_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ namespace test_helpers

std::shared_ptr<isobus::InternalControlFunction> create_mock_internal_control_function(std::uint8_t address);

}; // namespace test_helpers
} // namespace test_helpers

#endif // CONTROL_FUNCTION_HELPERS_HPP
2 changes: 1 addition & 1 deletion test/helpers/messaging_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,4 @@ namespace test_helpers
});
}

}; // namespace test_helpers
} // namespace test_helpers
2 changes: 1 addition & 1 deletion test/helpers/messaging_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ namespace test_helpers
std::shared_ptr<isobus::ControlFunction> source,
std::shared_ptr<isobus::ControlFunction> destination);

}; // namespace test_helpers
} // namespace test_helpers
#endif // MESSAGING_HELPERS_HPP

0 comments on commit 8c92856

Please sign in to comment.