Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-grid
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Nils Friess
dune-grid
Commits
f02572ab
Commit
f02572ab
authored
5 months ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
UGGridFactory: ugDomain is a std::unique_ptr now
parent
98d5a2a6
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/grid/uggrid/uggridfactory.cc
+2
-2
2 additions, 2 deletions
dune/grid/uggrid/uggridfactory.cc
with
2 additions
and
2 deletions
dune/grid/uggrid/uggridfactory.cc
+
2
−
2
View file @
f02572ab
...
...
@@ -298,7 +298,7 @@ createGrid()
// ///////////////////////////////////////////
grid_
->
numBoundarySegments_
=
boundarySegments
.
size
();
auto
*
ugDomain
=
new
UG_NS
<
dimworld
>::
domain
;
auto
ugDomain
=
std
::
make_unique
<
typename
UG_NS
<
dimworld
>::
domain
>
()
;
ugDomain
->
numOfSegments
=
grid_
->
numBoundarySegments_
;
ugDomain
->
numOfCorners
=
noOfBNodes
;
...
...
@@ -417,7 +417,7 @@ createGrid()
if
(
BVP_SetBVPDesc
(
theBVP
,
&
theBVPDesc
)
!=
0
)
DUNE_THROW
(
GridError
,
"Calling BVP_SetBVPDesc failed!"
);
if
(
STD_BVP_Configure
(
BVPName
,
ugDomain
))
if
(
STD_BVP_Configure
(
BVPName
,
std
::
move
(
ugDomain
))
)
DUNE_THROW
(
GridError
,
"Calling STD_BVP_Configure failed!"
);
// Make sure there is no old multigrid object with the same name.
...
...
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