"platforms/reference/src/SimTKReference/ReferenceMinimize.cpp" did not exist on "07d005fae0cdb330b10aac43ff88fd338ae9122a"
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: ...@@ -57,6 +57,8 @@ public:
*/ */
ContextImpl(Context& owner, const System& system, Integrator& integrator, Platform* platform, const std::map<std::string, std::string>& properties, ContextImpl(Context& owner, const System& system, Integrator& integrator, Platform* platform, const std::map<std::string, std::string>& properties,
ContextImpl* originalContext=NULL); ContextImpl* originalContext=NULL);
ContextImpl(const ContextImpl&) = delete;
ContextImpl& operator=(const ContextImpl&) = delete;
~ContextImpl(); ~ContextImpl();
/** /**
* Get the Context for which this is the implementation. * 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