Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
integration-cfmesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Community
integration-cfmesh
Commits
ec1a1cd9
Commit
ec1a1cd9
authored
Oct 02, 2019
by
Mark Olesen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMP: upgrade from deprecated dictionary lookupEntry
- use keyType::LITERAL instead of (false, false)
parent
2ac1fa10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
meshLibrary/utilities/checkMeshDict/checkMeshDict.C
meshLibrary/utilities/checkMeshDict/checkMeshDict.C
+2
-2
meshLibrary/utilities/octrees/meshOctree/meshOctreeCreator/meshOctreeCreatorAdjustOctreeToSurface.C
...eshOctreeCreator/meshOctreeCreatorAdjustOctreeToSurface.C
+1
-1
meshLibrary/utilities/surfaceTools/renameBoundaryPatches/renameBoundaryPatches.C
...urfaceTools/renameBoundaryPatches/renameBoundaryPatches.C
+1
-2
No files found.
meshLibrary/utilities/checkMeshDict/checkMeshDict.C
View file @
ec1a1cd9
...
...
@@ -249,7 +249,7 @@ void Foam::Module::checkMeshDict::checkObjectRefinements() const
forAll
(
refObjects
,
objectI
)
{
const
entry
&
objectEntry
=
dict
.
lookupEntry
(
objectNames
[
objectI
],
false
,
false
);
dict
.
lookupEntry
(
objectNames
[
objectI
],
keyType
::
LITERAL
);
refObjects
.
set
(
...
...
@@ -312,7 +312,7 @@ void Foam::Module::checkMeshDict::checkAnisotropicSources() const
forAll
(
anisotropicObjects
,
objectI
)
{
const
entry
&
objectEntry
=
dict
.
lookupEntry
(
objectNames
[
objectI
],
false
,
false
);
dict
.
lookupEntry
(
objectNames
[
objectI
],
keyType
::
LITERAL
);
anisotropicObjects
.
set
(
...
...
meshLibrary/utilities/octrees/meshOctree/meshOctreeCreator/meshOctreeCreatorAdjustOctreeToSurface.C
View file @
ec1a1cd9
...
...
@@ -208,7 +208,7 @@ void Foam::Module::meshOctreeCreator::refineBoxesContainedInObjects()
forAll
(
refObjects
,
objectI
)
{
const
entry
&
objectEntry
=
dict
.
lookupEntry
(
objectNames
[
objectI
],
false
,
false
);
dict
.
lookupEntry
(
objectNames
[
objectI
],
keyType
::
LITERAL
);
refObjects
.
set
(
...
...
meshLibrary/utilities/surfaceTools/renameBoundaryPatches/renameBoundaryPatches.C
View file @
ec1a1cd9
...
...
@@ -77,8 +77,7 @@ void Foam::Module::renameBoundaryPatches::calculateNewBoundary()
newPatchNames
.
lookupEntry
(
keys
[
patchI
],
false
,
false
keyType
::
LITERAL
).
clone
()
);
}
...
...
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