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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
uses: actions/checkout@v4
with:
path: up-zenoh-example-cpp
repository: eclipse-uprotocol/up-zenoh-example-cpp

- name: Fetch up-cpp conan recipe
uses: actions/checkout@v4
Expand All @@ -39,7 +38,7 @@ jobs:
- name: Build up-core-api conan recipe
shell: bash
run: |
conan create --version 1.6.0 up-conan-recipes/up-core-api/release
conan create --version 1.6.0-alpha4 --build=missing up-conan-recipes/up-core-api/release

- name: Build up-cpp conan recipe
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion conanfile.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[requires]
up-cpp/[^1.0.1, include_prerelease]
spdlog/[~1.13]
up-core-api/1.6.0
up-core-api/1.6.0-alpha4
protobuf/[>=3.21.12]
up-transport-socket-cpp/[>=1.0.0, include_prerelease]

Expand Down
2 changes: 1 addition & 1 deletion pubsub/src/UTransportDomainSockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class UTransportDomainSockets : public transport::UTransport {

void notifyListener(const v1::UMessage& message);
void listenThread(); // listen for incoming messages (thread)
void cleanupListener(CallableConn listener) override {}
void cleanupListener(const CallableConn& listener) override {}
}; // class UTransportDomainSockets

#endif // UTRANSPORT_DOMAIN_SOCKETS_H
Loading