Skip to content

Commit

Permalink
Handle Code Sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Jun 30, 2024
1 parent 4c2aaab commit 3355d62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ref_app/src/os/os_task_control_block.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

task_control_block() = delete;

~task_control_block() = default;
~task_control_block() { }

auto operator=(const task_control_block&) -> task_control_block& = delete;
auto operator=(task_control_block&&) noexcept -> task_control_block& = delete;
Expand Down
2 changes: 1 addition & 1 deletion ref_app/src/util/utility/util_time.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

constexpr timer(timer&& other) noexcept : my_tick(other.my_tick) { }

~timer() noexcept = default;
~timer() { }

auto operator=(const timer& other) noexcept -> timer&
{
Expand Down

0 comments on commit 3355d62

Please sign in to comment.