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
Christian Butz
VTK
Commits
b3e4f0c0
Commit
b3e4f0c0
authored
Feb 21, 2008
by
Jeff Baumes
Browse files
COMP: Fixing vtkIdType vs. int mismatch.
parent
cb616845
Changes
1
Hide whitespace changes
Inline
Side-by-side
Filtering/vtkDirectedAcyclicGraph.cxx
View file @
b3e4f0c0
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
using
vtksys_stl
::
vector
;
using
vtksys_stl
::
vector
;
vtkCxxRevisionMacro
(
vtkDirectedAcyclicGraph
,
"1.
1
"
);
vtkCxxRevisionMacro
(
vtkDirectedAcyclicGraph
,
"1.
2
"
);
vtkStandardNewMacro
(
vtkDirectedAcyclicGraph
);
vtkStandardNewMacro
(
vtkDirectedAcyclicGraph
);
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
vtkDirectedAcyclicGraph
::
vtkDirectedAcyclicGraph
()
vtkDirectedAcyclicGraph
::
vtkDirectedAcyclicGraph
()
...
@@ -59,7 +59,7 @@ enum { DFS_WHITE, DFS_GRAY, DFS_BLACK };
...
@@ -59,7 +59,7 @@ enum { DFS_WHITE, DFS_GRAY, DFS_BLACK };
bool
vtkDirectedAcyclicGraphDFSVisit
(
bool
vtkDirectedAcyclicGraphDFSVisit
(
vtkGraph
*
g
,
vtkGraph
*
g
,
vtkIdType
u
,
vtkIdType
u
,
vtksys_stl
::
vector
<
vtkIdType
>
color
,
vtksys_stl
::
vector
<
int
>
color
,
vtkOutEdgeIterator
*
adj
)
vtkOutEdgeIterator
*
adj
)
{
{
color
[
u
]
=
DFS_GRAY
;
color
[
u
]
=
DFS_GRAY
;
...
...
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