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
1b35ea62
Commit
1b35ea62
authored
Feb 14, 2012
by
George Zagaris
Browse files
COMP: Add std namespace for STL vector
Change-Id: Iea0f198f3e638cb8d9cddb644bd57828a18f95d8
parent
1a72b649
Changes
1
Hide whitespace changes
Inline
Side-by-side
Filtering/vtkAMRBox.cxx
View file @
1b35ea62
...
...
@@ -1819,8 +1819,8 @@ void Split(
const
int
minSide
[
3
],
std
::
vector
<
vtkAMRBox
>
&
decomp
)
{
vector
<
vtkAMRBox
>
tDecomp
;
// Working array for resulting splits
vector
<
vtkAMRBox
>
aDecomp
;
// and for atomic boxes.
std
::
vector
<
vtkAMRBox
>
tDecomp
;
// Working array for resulting splits
std
::
vector
<
vtkAMRBox
>
aDecomp
;
// and for atomic boxes.
// For each coordinate direction attempt N splits.
for
(
int
cdir
=
0
;
cdir
<
3
;
++
cdir
)
...
...
@@ -1881,8 +1881,8 @@ void Split(
const
int
minSide
[
3
],
std
::
vector
<
vtkAMRBox
>
&
decomp
)
{
vector
<
vtkAMRBox
>
tDecomp
;
// Working array for resulting splits
vector
<
vtkAMRBox
>
aDecomp
;
// and for atomic boxes.
std
::
vector
<
vtkAMRBox
>
tDecomp
;
// Working array for resulting splits
std
::
vector
<
vtkAMRBox
>
aDecomp
;
// and for atomic boxes.
for
(
int
cdir
=
0
;
cdir
<
3
;
++
cdir
)
{
while
(
decomp
.
size
())
...
...
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