Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation for cppyy-windows #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 include/CommonAPI/SomeIP/InputStream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ class InputStream: public CommonAPI::InputStream<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
Expand Down
2 changes: 1 addition & 1 deletion include/CommonAPI/SomeIP/Proxy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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> _proxy,
uint16_t serviceId,
Expand Down