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
a8020adc
"wrappers/python/vscode:/vscode.git/clone" did not exist on "e4022a5916beaa28188937e7f31116426581097b"
Commit
a8020adc
authored
Jul 03, 2018
by
peastman
Browse files
Fixed compiler warning
parent
ea4873f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libraries/lepton/src/CompiledExpression.cpp
libraries/lepton/src/CompiledExpression.cpp
+2
-2
No files found.
libraries/lepton/src/CompiledExpression.cpp
View file @
a8020adc
...
...
@@ -188,8 +188,8 @@ double CompiledExpression::evaluate() const {
#ifdef LEPTON_USE_JIT
static
double
evaluateOperation
(
Operation
*
op
,
double
*
args
)
{
map
<
string
,
double
>
*
dummyVariables
=
NULL
;
return
op
->
evaluate
(
args
,
*
dummyVariables
);
static
map
<
string
,
double
>
dummyVariables
;
return
op
->
evaluate
(
args
,
dummyVariables
);
}
void
CompiledExpression
::
generateJitCode
()
{
...
...
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