Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
a56ce87d
Commit
a56ce87d
authored
Mar 17, 2009
by
Peter Eastman
Browse files
Fixed compilation warning under Windows.
parent
e04283fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
openmmapi/src/OpenMMContext.cpp
openmmapi/src/OpenMMContext.cpp
+5
-3
No files found.
openmmapi/src/OpenMMContext.cpp
View file @
a56ce87d
...
...
@@ -6,7 +6,7 @@
* Biological Structures at Stanford, funded under the NIH Roadmap for *
* Medical Research, grant U54 GM072970. See https://simtk.org. *
* *
* Portions copyright (c) 2008 Stanford University and the Authors.
*
* Portions copyright (c) 2008
-2009
Stanford University and the Authors. *
* Authors: Peter Eastman *
* Contributors: *
* *
...
...
@@ -36,10 +36,12 @@
using
namespace
OpenMM
;
using
namespace
std
;
OpenMMContext
::
OpenMMContext
(
System
&
system
,
Integrator
&
integrator
)
:
impl
(
new
OpenMMContextImpl
(
*
this
,
system
,
integrator
,
0
))
{
OpenMMContext
::
OpenMMContext
(
System
&
system
,
Integrator
&
integrator
)
{
impl
=
new
OpenMMContextImpl
(
*
this
,
system
,
integrator
,
0
);
}
OpenMMContext
::
OpenMMContext
(
System
&
system
,
Integrator
&
integrator
,
Platform
&
platform
)
:
impl
(
new
OpenMMContextImpl
(
*
this
,
system
,
integrator
,
&
platform
))
{
OpenMMContext
::
OpenMMContext
(
System
&
system
,
Integrator
&
integrator
,
Platform
&
platform
)
{
impl
=
new
OpenMMContextImpl
(
*
this
,
system
,
integrator
,
&
platform
);
}
OpenMMContext
::~
OpenMMContext
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment