Skip to content

Commit

Permalink
interesting
Browse files Browse the repository at this point in the history
  • Loading branch information
martinzink committed Feb 24, 2025
1 parent 48b9196 commit 452b6e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: |
# Set core file size limit to unlimited
ulimit -c unlimited
ctest -j4 --output-on-failure --timeout 300
ctest --timeout 300 -j4 --output-on-failure --timeout 300
working-directory: build
- name: linter
run: ninja linter
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
run: |
# Set core file size limit to unlimited
ulimit -c unlimited
ctest -j$(nproc) --output-on-failure
ctest --timeout 300 -j$(nproc) --output-on-failure
working-directory: build
- name: check-cores
if: ${{ failure() && steps.test.conclusion == 'failure' }}
Expand Down Expand Up @@ -429,7 +429,7 @@ jobs:
run: |
# Set core file size limit to unlimited
ulimit -c unlimited
ctest -j$(nproc) --output-on-failure
ctest --timeout 300 -j$(nproc) --output-on-failure
working-directory: build
- name: linter
run: cmake --build . --target linter
Expand Down
2 changes: 0 additions & 2 deletions extensions/standard-processors/modbus/ReadModbusFunctions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

namespace org::apache::nifi::minifi::modbus {

ReadModbusFunction::~ReadModbusFunction() = default;

std::vector<std::byte> ReadModbusFunction::requestBytes() const {
constexpr std::array modbus_service_protocol_identifier = {std::byte{0}, std::byte{0}};
const auto pdu = rawPdu();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ReadModbusFunction {

virtual bool operator==(const ReadModbusFunction&) const = 0;

virtual ~ReadModbusFunction();
virtual ~ReadModbusFunction() = default;

[[nodiscard]] std::vector<std::byte> requestBytes() const;

Expand Down

0 comments on commit 452b6e8

Please sign in to comment.