Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ken Martin
VTK
Commits
39b7a345
Commit
39b7a345
authored
Apr 24, 2013
by
Joachim Pouderoux
Browse files
Fix signed/unsigned warning in HTG.
Change-Id: I25be3f3329ab9a228865c64caaf7dfea287fd049
parent
c903fe94
Changes
1
Show whitespace changes
Inline
Side-by-side
Common/DataModel/vtkHyperTree.cxx
View file @
39b7a345
...
...
@@ -950,8 +950,8 @@ void vtkHyperTree::FindChildParameters( int child, vtkIdType& index, bool& isLea
#define GetNodeParametersMacro( _N_ ) \
{ \
vtkCompactHyperTree<_N_>* tree = static_cast<vtkCompactHyperTree<_N_>*>( this ); \
vtkCompactHyperTreeNode<_N_>* node = tree->GetNode( index );
\
index = node->GetChild( child );
\
vtkCompactHyperTreeNode<_N_>* node = tree->GetNode(
static_cast<int>(
index
)
); \
index =
static_cast<vtkIdType>(
node->GetChild( child
)
); \
isLeaf = node->IsChildLeaf( child ); \
return; \
}
...
...
Write
Preview
Supports
Markdown
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