"platforms/cuda/tests/TestCudaEwald.cpp" did not exist on "a402046652cab8ba297aa423e4cb57c904525144"
Unverified Commit 4399fa69 authored by Dann239's avatar Dann239 Committed by GitHub
Browse files

Deleted the default copy-constuctor for ContextImpl. (#3184)

* Deleted the default copy-constuctor for ContextImpl.

* Deleted the default copy assignment operator for ContextImpl.
parent c74510f7
......@@ -57,6 +57,8 @@ public:
*/
ContextImpl(Context& owner, const System& system, Integrator& integrator, Platform* platform, const std::map<std::string, std::string>& properties,
ContextImpl* originalContext=NULL);
ContextImpl(const ContextImpl&) = delete;
ContextImpl& operator=(const ContextImpl&) = delete;
~ContextImpl();
/**
* Get the Context for which this is the implementation.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment