Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
STYLE: use updated HashTable iterator names
· 2ac1fa10
Mark OLESEN
authored
Sep 25, 2019
2ac1fa10
Hide whitespace changes
Inline
Side-by-side
utilities/FMSToVTK/xmlTag.H
View file @
2ac1fa10
...
...
@@ -190,7 +190,7 @@ Ostream& operator<<(Ostream& os, const xmlTag& tag)
// Attributes and text
forAllConstIters
(
tag
.
attributes_
,
iter
)
{
os
<<
token
::
SPACE
<<
iter
.
key
()
<<
'='
<<
iter
.
object
();
os
<<
token
::
SPACE
<<
iter
.
key
()
<<
'='
<<
iter
.
val
();
}
if
(
tag
.
str
().
size
()
||
tag
.
children_
.
size
())
...
...