Skip to content

Commit

Permalink
Merge pull request #28 from CESNET/doxygen-ci-fix
Browse files Browse the repository at this point in the history
github-action - doxygen now reports warning as errors
  • Loading branch information
SiskaPavel authored Oct 9, 2024
2 parents 88ae5a4 + a5880ca commit 89efb38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
dnf config-manager --set-enabled ol9_codeready_builder
dnf install -y doxygen
- name: make doxygen
run: make doxygen
run: make doxygen CMAKE_ARGS="-DDOXYGEN_WARN_AS_ERROR=YES"
- name: upload Doxygen artifact
uses: actions/upload-artifact@v4
with:
Expand Down
12 changes: 11 additions & 1 deletion include/telemetry/holder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,17 @@ class Holder {

Holder(const Holder& other) = delete;
Holder& operator=(const Holder& other) = delete;
Holder(Holder&& other) = default;
/**
* @brief Move constructor
* @param other Other holder
*/
Holder(Holder&& other) = delete;

/**
* @brief Move assignment
* @param other Other holder
* @return Reference to this holder
*/
Holder& operator=(Holder&& other) = default;

/**
Expand Down

0 comments on commit 89efb38

Please sign in to comment.