Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Core Modules
dune-istl
Merge requests
!477
Add inline to splitFilename
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add inline to splitFilename
issue/patch-18381
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Simon Praetorius
requested to merge
issue/patch-18381
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Summary
Add the missing
inline
keyword. This fixes a linker error introduced in
!465 (merged)
.
Edited
3 years ago
by
Simon Praetorius
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
048f9a9d
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/istl/matrixmarket.hh
+
1
−
1
Options
@@ -847,7 +847,7 @@ namespace Dune
Setter
(
rows
,
matrix
);
}
std
::
tuple
<
std
::
string
,
std
::
string
>
splitFilename
(
const
std
::
string
&
filename
)
{
inline
std
::
tuple
<
std
::
string
,
std
::
string
>
splitFilename
(
const
std
::
string
&
filename
)
{
std
::
size_t
lastdot
=
filename
.
find_last_of
(
"."
);
if
(
lastdot
==
std
::
string
::
npos
)
return
std
::
make_tuple
(
filename
,
""
);
Loading