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
dumux-repositories
dumux
Commits
84f54113
Commit
84f54113
authored
Sep 24, 2020
by
Timo Koch
Browse files
[common][monotonespline] Fix argument to be const&
parent
be6a03bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/common/monotonecubicspline.hh
View file @
84f54113
...
...
@@ -62,7 +62,7 @@ public:
* \param x a vector of x-coordinates
* \param y a vector of y-coordinates
*/
MonotoneCubicSpline
(
const
std
::
vector
<
Scalar
>&
x
,
const
std
::
vector
<
Scalar
>
y
)
MonotoneCubicSpline
(
const
std
::
vector
<
Scalar
>&
x
,
const
std
::
vector
<
Scalar
>
&
y
)
{
// check some requirements
assert
(
x
.
size
()
==
y
.
size
());
...
...
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