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
Christian Butz
VTK
Commits
38b63023
Commit
38b63023
authored
Nov 30, 2017
by
Ben Boeckel
⛰
Browse files
vtkGenericDataArrayLookupHelper: don't use C++11 initializer lists
The wrappers get syntax errors.
parent
9708ba95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Common/Core/vtkGenericDataArrayLookupHelper.h
View file @
38b63023
...
...
@@ -69,8 +69,8 @@ public:
// Constructor.
vtkGenericDataArrayLookupHelper
()
:
AssociatedArray
{
nullptr
}
,
SortedArray
(
nullptr
),
FirstValue
{
nullptr
}
,
SortedArraySize
{
0
}
:
AssociatedArray
(
nullptr
)
,
SortedArray
(
nullptr
),
FirstValue
(
nullptr
)
,
SortedArraySize
(
0
)
{
}
~
vtkGenericDataArrayLookupHelper
()
...
...
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