Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@ name: CMake Build Coverage
on:
push:
branches:
- never
# Disable for now, I am tied of constantly breaking coverage because the tools introduce new waring or errors
# pull_request:
# branches:
# - main
# workflow_dispatch:

on:
workflow_call:
- main
pull_request:
branches:
- main
workflow_dispatch:

env:
VCPKG_COMMIT_ID: 'ad25766aefb5313b6bc4e2a4b78a2946f84fbf66'
Expand Down
2 changes: 2 additions & 0 deletions include/zq/error.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@
: std::runtime_error(std::to_string(en.value()) + std::string{": "} +
msg.data()),
errNo(en) {}

~ZmqError() = default;

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build Coverage-converage

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build Coverage-converage

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build Coverage-converage

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build Coverage-converage

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build Coverage-converage

definition of implicit copy assignment operator for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build and Test

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build and Test

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]

Check failure on line 88 in include/zq/error.hpp

View workflow job for this annotation

GitHub Actions / macos-latest-CMake Build and Test

definition of implicit copy constructor for 'ZmqError' is deprecated because it has a user-declared destructor [-Werror,-Wdeprecated-copy-with-dtor]
};

/**
Expand Down
Loading