diff --git a/include/CommonAPI/SomeIP/InputStream.hpp b/include/CommonAPI/SomeIP/InputStream.hpp index 90bda22..cc3c233 100644 --- a/include/CommonAPI/SomeIP/InputStream.hpp +++ b/include/CommonAPI/SomeIP/InputStream.hpp @@ -491,7 +491,7 @@ class InputStream: public CommonAPI::InputStream { * @param message the #Message from which data should be read. */ COMMONAPI_EXPORT InputStream(const Message &_message, bool _isLittleEndian); - COMMONAPI_EXPORT InputStream(const InputStream &_stream) = delete; + InputStream(const InputStream &_stream) = delete; /** * Destructor; does not call the destructor of the referred #Message. Make sure to maintain a reference to the diff --git a/include/CommonAPI/SomeIP/Proxy.hpp b/include/CommonAPI/SomeIP/Proxy.hpp index e223d46..121832c 100644 --- a/include/CommonAPI/SomeIP/Proxy.hpp +++ b/include/CommonAPI/SomeIP/Proxy.hpp @@ -71,7 +71,7 @@ class COMMONAPI_EXPORT_CLASS_EXPLICIT Proxy COMMONAPI_EXPORT virtual const Address &getSomeIpAlias() const; private: - COMMONAPI_EXPORT Proxy(const Proxy&) = delete; + Proxy(const Proxy&) = delete; COMMONAPI_EXPORT void onServiceInstanceStatus(std::shared_ptr _proxy, uint16_t serviceId,