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
VTK
VTK
Commits
6ee99457
Commit
6ee99457
authored
Aug 14, 2004
by
Francois Bertel
Browse files
Fixed warning about unsafe >
parent
82b35210
Changes
1
Hide whitespace changes
Inline
Side-by-side
Common/vtkGenericAttributeCollection.cxx
View file @
6ee99457
...
...
@@ -25,7 +25,7 @@
#include
<vtkstd/vector>
#include
<assert.h>
vtkCxxRevisionMacro
(
vtkGenericAttributeCollection
,
"1.
6
"
);
vtkCxxRevisionMacro
(
vtkGenericAttributeCollection
,
"1.
7
"
);
vtkStandardNewMacro
(
vtkGenericAttributeCollection
);
class
vtkGenericAttributeInternalVector
...
...
@@ -371,7 +371,7 @@ int *vtkGenericAttributeCollection::GetAttributesToInterpolate()
{
assert
(
"pre: not_empty"
&&
!
IsEmpty
());
assert
(
"post: valid_result"
&&
((
!
this
->
NumberOfAttributesToInterpolate
>
0
)
assert
(
"post: valid_result"
&&
((
!
(
this
->
NumberOfAttributesToInterpolate
>
0
)
)
||
this
->
AttributesToInterpolate
!=
0
));
// A=>B !A||B
...
...
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