Skip to content
GitLab
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
9439d83f
Commit
9439d83f
authored
Jan 10, 2016
by
Henry Weller
Browse files
Make private member functions private
Resolves bug-report
http://openfoam.org/mantisbt/view.php?id=1969
parent
75cf86b7
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/containers/Lists/IndirectList/IndirectList.H
View file @
9439d83f
...
...
@@ -107,10 +107,10 @@ class IndirectList
{
// Private Member Functions
//- Disa
ble
default assignment operator
//- Disa
llow
default assignment operator
void
operator
=
(
const
IndirectList
<
T
>&
);
//- Disa
ble
assignment from UIndirectList
//- Disa
llow
assignment from UIndirectList
void
operator
=
(
const
UIndirectList
<
T
>&
);
...
...
src/OpenFOAM/meshes/polyMesh/zones/cellZone/cellZone.H
View file @
9439d83f
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011
-2016
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -72,6 +72,8 @@ protected:
const
cellZoneMesh
&
zoneMesh_
;
private:
// Private Member Functions
//- Disallow default bitwise copy construct
...
...
src/OpenFOAM/meshes/polyMesh/zones/faceZone/faceZone.H
View file @
9439d83f
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011
-2016
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -71,6 +71,16 @@ class faceZone
//- The name associated with the zone-labels dictionary entry
static
const
word
labelsName_
;
// Private Member Functions
//- Disallow default bitwise copy construct
faceZone
(
const
faceZone
&
);
//- Disallow default bitwise assignment
void
operator
=
(
const
faceZone
&
);
protected:
// Protected data
...
...
@@ -98,13 +108,7 @@ protected:
mutable
labelList
*
mePtr_
;
// Private Member Functions
//- Disallow default bitwise copy construct
faceZone
(
const
faceZone
&
);
//- Disallow default bitwise assignment
void
operator
=
(
const
faceZone
&
);
// Protected Member Functions
//- Build primitive patch
void
calcFaceZonePatch
()
const
;
...
...
src/finiteVolume/fvMesh/fvBoundaryMesh/fvBoundaryMesh.H
View file @
9439d83f
...
...
@@ -62,7 +62,7 @@ class fvBoundaryMesh
// Private Member Functions
//- Disa
ble
default copy construct
//- Disa
llow
default copy construct
fvBoundaryMesh
(
const
fvBoundaryMesh
&
);
//- Disallow assignment
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment