Skip to content

Commit

Permalink
fix CI clang-tidy check
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Aug 15, 2024
1 parent 69effa8 commit 2baefb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y clang-tidy
clang-tidy --version
if: matrix.os == 'ubuntu-latest'
- name: configure
run: |
Expand Down
2 changes: 1 addition & 1 deletion include/reactor-cpp/value_ptr.hh
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public:
* class:`ImmutableValuePtr`, the value is deleted.
* @endrst
*/
auto operator=(ImmutableValuePtr&& ptr) -> ImmutableValuePtr& = default;
auto operator=(ImmutableValuePtr&& ptr) noexcept -> ImmutableValuePtr& = default;

/**
* Retrieve a raw pointer to the managed value.
Expand Down

0 comments on commit 2baefb7

Please sign in to comment.