summaryrefslogtreecommitdiff
path: root/implementation/endpoints/include/client_endpoint.hpp
diff options
context:
space:
mode:
authorlutzbichler <52852266+lutzbichler@users.noreply.github.com>2022-03-15 07:11:23 +0100
committerGitHub <noreply@github.com>2022-03-15 07:11:23 +0100
commit18e8b7f98c3ecc9cf3bc7bd6c5c1098ad397d9ac (patch)
tree3aac50c0bb94b7eb67651adff00fc8e8f70359af /implementation/endpoints/include/client_endpoint.hpp
parent01faa10d1c64254f394857cf9fb9a1e90d2a442e (diff)
parentb53b88eb23b2f8a16b829b7d770b1483eaf025f3 (diff)
downloadvSomeIP-18e8b7f98c3ecc9cf3bc7bd6c5c1098ad397d9ac.tar.gz
Merge pull request #288 from 007herelsp/master
fixed android build error
Diffstat (limited to 'implementation/endpoints/include/client_endpoint.hpp')
-rw-r--r--implementation/endpoints/include/client_endpoint.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/implementation/endpoints/include/client_endpoint.hpp b/implementation/endpoints/include/client_endpoint.hpp
index ce872e8..3429a92 100644
--- a/implementation/endpoints/include/client_endpoint.hpp
+++ b/implementation/endpoints/include/client_endpoint.hpp
@@ -12,7 +12,12 @@ namespace vsomeip_v3 {
class client_endpoint : public virtual endpoint {
public:
- virtual ~client_endpoint() {}
+ virtual ~client_endpoint()
+#ifndef ANDROID
+ {}
+#else
+ ;
+#endif
virtual bool get_remote_address(boost::asio::ip::address &_address) const = 0;
virtual std::uint16_t get_remote_port() const = 0;