Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
dune-xt
Commits
a4965d42
Commit
a4965d42
authored
8 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
[container.vector] mark two operator* as const
parent
77d29ed7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/xt/la/container/vector-interface.hh
+2
-2
2 additions, 2 deletions
dune/xt/la/container/vector-interface.hh
with
2 additions
and
2 deletions
dune/xt/la/container/vector-interface.hh
+
2
−
2
View file @
a4965d42
...
@@ -373,7 +373,7 @@ public:
...
@@ -373,7 +373,7 @@ public:
* \param alpha The scalar.
* \param alpha The scalar.
* \return The scaled copy of this.
* \return The scaled copy of this.
*/
*/
virtual
derived_type
operator
*
(
const
ScalarType
&
alpha
)
virtual
derived_type
operator
*
(
const
ScalarType
&
alpha
)
const
{
{
derived_type
ret
=
this
->
copy
();
derived_type
ret
=
this
->
copy
();
ret
*=
alpha
;
ret
*=
alpha
;
...
@@ -386,7 +386,7 @@ public:
...
@@ -386,7 +386,7 @@ public:
* \return The scalar product.
* \return The scalar product.
* \see dot()
* \see dot()
*/
*/
virtual
ScalarType
operator
*
(
const
derived_type
&
other
)
virtual
ScalarType
operator
*
(
const
derived_type
&
other
)
const
{
{
return
dot
(
other
);
return
dot
(
other
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment