Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.11.0
with:
clang-format-version: '14'
clang-format-version: '20'
check-path: ${{ matrix.path }}

Linting:
Expand Down
2 changes: 1 addition & 1 deletion examples/rmqperftest/rmqperftest_runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class ConfirmCallback {

void operator()(const rmqt::Message&,
const bsl::string&,
const rmqt::ConfirmResponse&){};
const rmqt::ConfirmResponse&) {};
};

bsl::string_view queueNameOrRoutingKey(bsl::string_view routingKey,
Expand Down
2 changes: 1 addition & 1 deletion src/rmq/rmqamqp/rmqamqp_channelfactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace rmqamqp {

class ChannelFactory {
public:
virtual ~ChannelFactory(){};
virtual ~ChannelFactory() {};

virtual bsl::shared_ptr<ReceiveChannel> createReceiveChannel(
const rmqt::Topology& topology,
Expand Down
2 changes: 1 addition & 1 deletion src/rmq/rmqio/rmqio_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Timer {

class TimerFactory {
public:
virtual ~TimerFactory(){};
virtual ~TimerFactory() {};

/// Creates a timer and initializes its timeout. The timer should be
/// started by calling start().
Expand Down
2 changes: 1 addition & 1 deletion src/rmq/rmqt/rmqt_credentials.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace rmqt {

class Credentials {
public:
virtual ~Credentials(){};
virtual ~Credentials() {};
virtual bsl::string formatCredentials() = 0;
virtual bsl::string authenticationMechanism() = 0;
};
Expand Down
2 changes: 1 addition & 1 deletion src/rmq/rmqt/rmqt_endpoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SecurityParameters;

class Endpoint {
public:
virtual ~Endpoint(){};
virtual ~Endpoint() {};
virtual bsl::string formatAddress() const = 0;
virtual bsl::string hostname() const = 0;
virtual bsl::string vhost() const = 0;
Expand Down
Loading