Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VTK
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
430
Issues
430
List
Boards
Labels
Milestones
Merge Requests
109
Merge Requests
109
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
VTK
VTK
Commits
a72dc471
Commit
a72dc471
authored
Nov 27, 2019
by
Allison Vacanti
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove remaining usages of old `vtkTypeList_Create_NN` macros.
parent
7c9adac1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
Common/Core/vtkCreateArrayDispatchArrayList.cmake
Common/Core/vtkCreateArrayDispatchArrayList.cmake
+2
-2
Common/DataModel/vtkCellArray.h
Common/DataModel/vtkCellArray.h
+3
-3
No files found.
Common/Core/vtkCreateArrayDispatchArrayList.cmake
View file @
a72dc471
...
...
@@ -62,7 +62,7 @@
# namespace vtkArrayDispatch {
#
# typedef vtkTypeList::Unique<
# vtkTypeList
_Create_21(
# vtkTypeList
::Create<
# MyCustomArray1<float>,
# MyCustomArray1<double>,
# MyCustomArray2<int>,
...
...
@@ -84,7 +84,7 @@
# ExtraArray1,
# ExtraArray2<float>,
# ExtraArray2<char>
#
)
#
>
# >::Result Arrays;
#
# } // end namespace vtkArrayDispatch
...
...
Common/DataModel/vtkCellArray.h
View file @
a72dc471
...
...
@@ -178,7 +178,7 @@ public:
*
* @sa vtkCellArray::Visit() for a simpler mechanism.
*/
using
StorageArrayList
=
vtkTypeList
_Create_2
(
ArrayType32
,
ArrayType64
)
;
using
StorageArrayList
=
vtkTypeList
::
Create
<
ArrayType32
,
ArrayType64
>
;
/**
* List of possible ArrayTypes that are compatible with internal storage.
...
...
@@ -189,8 +189,8 @@ public:
* check input arrays before assigning them to a cell array.
*/
using
InputArrayList
=
typename
vtkTypeList
::
Unique
<
vtkTypeList
_Create_3
(
vtkAOSDataArrayTemplate
<
int
>
,
vtkAOSDataArrayTemplate
<
long
>
,
vtkAOSDataArrayTemplate
<
long
long
>
)
>::
Result
;
typename
vtkTypeList
::
Unique
<
vtkTypeList
::
Create
<
vtkAOSDataArrayTemplate
<
int
>
,
vtkAOSDataArrayTemplate
<
long
>
,
vtkAOSDataArrayTemplate
<
long
long
>
>
>::
Result
;
/**
* Instantiate cell array (connectivity list).
...
...
Allison Vacanti
@allisonvacanti
mentioned in commit
c2548dd7
·
Nov 27, 2019
mentioned in commit
c2548dd7
mentioned in commit c2548dd709bd8546b35a358d35a3cdb54264d93b
Toggle commit list
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