Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
CAMP
campvis-public
Commits
35fa609f
Commit
35fa609f
authored
Dec 14, 2014
by
Hossain Mahmud
Browse files
minor fix
parent
1fe8450d
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/pipeline/abstractpipeline.cpp
View file @
35fa609f
...
...
@@ -277,8 +277,8 @@ namespace campvis {
return
nullptr
;
}
AbstractProcessor
*
AbstractPipeline
::
getProcessor
(
int
index
)
const
{
if
(
index
<
0
||
index
>=
_processors
.
size
())
AbstractProcessor
*
AbstractPipeline
::
getProcessor
(
int
index
)
const
{
if
(
index
<
0
||
(
size_t
)
index
>=
_processors
.
size
())
return
nullptr
;
return
_processors
[
index
];
}
...
...
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