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
Development
openfoam
Commits
45c29be3
Commit
45c29be3
authored
May 02, 2017
by
Mark OLESEN
Browse files
COMP: avoid clang compiler warnings
parent
1dc32368
Changes
2
Show whitespace changes
Inline
Side-by-side
applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/DelaunayMesh/DistributedDelaunayMesh.C
View file @
45c29be3
...
...
@@ -536,12 +536,7 @@ Foam::label Foam::DistributedDelaunayMesh<Triangulation>::referVertices
if
(
!
pointsNotInserted
.
empty
())
{
for
(
labelPairHashSet
::
const_iterator
iter
=
pointsNotInserted
.
begin
();
iter
!=
pointsNotInserted
.
end
();
++
iter
)
forAllConstIters
(
pointsNotInserted
,
iter
)
{
if
(
receivedVertices
.
found
(
iter
.
key
()))
{
...
...
src/meshTools/edgeFaceCirculator/edgeFaceCirculator.C
View file @
45c29be3
...
...
@@ -25,12 +25,16 @@ License
#include
"edgeFaceCirculator.H"
#include
"primitiveMesh.H"
#include
"nullObject.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
const
Foam
::
edgeFaceCirculator
Foam
::
edgeFaceCirculator
::
endConstIter
(
*
reinterpret_cast
<
primitiveMesh
*>
(
0
),
// primitiveMesh
*
reinterpret_cast
<
const
primitiveMesh
*>
(
NullObject
::
nullObject
.
pointer
()
// nullptr dummy
),
-
1
,
// faceLabel
false
,
// ownerSide
-
1
,
// index
...
...
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