Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Kurečka
Plumed AlphaFold
Commits
b636aaac
There was an error fetching the commit references. Please try again later.
Commit
b636aaac
authored
6 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Plain Diff
Merge branch 'v2.4' into v2.5
parents
e8a39033
361e216b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES/v2.4.md
+9
-0
9 additions, 0 deletions
CHANGES/v2.4.md
src/tools/Tools.cpp
+1
-1
1 addition, 1 deletion
src/tools/Tools.cpp
with
10 additions
and
1 deletion
CHANGES/v2.4.md
+
9
−
0
View file @
b636aaac
...
...
@@ -214,3 +214,12 @@ For developers:
-
All fixed done in version 2.3.8
-
CPPCHECK updated to 1.85
## Version 2.4.5 (to be released)
For users:
-
Fixed an inconsistency in parsing of braces.
It is now possible to pass individual options
including spaces (e.g. with
`FILE={/path with space/file}`
). Notice
that this invalidates syntax such as
`ATOMS={1}{2}{3}{4}`
. See more
at
\i
ssue{434}.
This diff is collapsed.
Click to expand it.
src/tools/Tools.cpp
+
1
−
1
View file @
b636aaac
...
...
@@ -145,7 +145,7 @@ vector<string> Tools::getWords(const string & line,const char* separators,int *
if
(
parenthesisLevel
==
0
)
for
(
unsigned
j
=
0
;
j
<
sep
.
length
();
j
++
)
if
(
line
[
i
]
==
sep
[
j
])
found
=
true
;
// If at parenthesis level zero (outer)
if
(
!
(
parenthesisLevel
==
0
&&
(
found
||
onParenthesis
)))
word
.
push_back
(
line
[
i
]);
if
(
onParenthesis
)
word
.
push_back
(
' '
);
//
if(onParenthesis) word.push_back(' ');
if
(
line
[
i
]
==
openpar
)
parenthesisLevel
++
;
if
(
found
&&
word
.
length
()
>
0
)
{
if
(
!
parlevel
)
plumed_massert
(
parenthesisLevel
==
0
,
"Unmatching parenthesis in '"
+
line
+
"'"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment