Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Florian Maurin
xdmf
Commits
6041ab7c
Commit
6041ab7c
authored
Jan 14, 2019
by
Ben Boeckel
⛰
Browse files
XdmfGridTemplate: use boolean && rather than bitwise &
parent
de33a297
Changes
1
Hide whitespace changes
Inline
Side-by-side
XdmfGridTemplate.cpp
View file @
6041ab7c
...
...
@@ -794,7 +794,7 @@ XdmfGridTemplate::populateItem(const std::map<std::string, std::string> & itemPr
if
(
array
->
getName
().
compare
(
"Data Description"
)
==
0
)
{
// Split description into substrings based on the " character
if
(
array
->
getNumberHeavyDataControllers
()
>
0
&
!
mHeavyWriter
)
{
if
(
array
->
getNumberHeavyDataControllers
()
>
0
&
&
!
mHeavyWriter
)
{
mHeavyWriter
=
reader
->
generateHeavyDataWriter
(
array
->
getHeavyDataController
(
0
)
->
getName
(),
array
->
getHeavyDataController
(
0
)
->
getFilePath
());
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment