Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
VTK
VTK
Commits
b6417845
Commit
b6417845
authored
Nov 21, 2014
by
David Gobbi
Committed by
Code Review
Nov 21, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge topic 'break-warning' into master
cdc8d8ae
Fix unreachable-code-break warnings.
parents
3637cce3
cdc8d8ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Imaging/Core/vtkImageBSplineInternals.cxx
Imaging/Core/vtkImageBSplineInternals.cxx
+3
-3
No files found.
Imaging/Core/vtkImageBSplineInternals.cxx
View file @
b6417845
...
...
@@ -135,7 +135,7 @@ InitialCausalCoefficient
}
return
(
c
[
0
]
+
Sum
/
(
1.0
-
zn
*
zn
));
}
break
;
/*
break;
(unecessary because of return) */
case
VTK_IMAGE_BORDER_MIRROR
:
/* this initialization corresponds to mirror boundaries */
...
...
@@ -167,7 +167,7 @@ InitialCausalCoefficient
}
return
(
Sum
/
(
1.0
-
zn
*
zn
));
}
break
;
/*
break;
(unecessary because of return) */
case
VTK_IMAGE_BORDER_REPEAT
:
/* this initialization corresponds to periodic boundaries */
...
...
@@ -195,7 +195,7 @@ InitialCausalCoefficient
}
return
(
Sum
/
(
1.0
-
zn
));
}
break
;
/*
break;
(unecessary because of return) */
}
return
(
0.0
);
...
...
Write
Preview
Markdown
is supported
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