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
99f31a75
Commit
99f31a75
authored
May 18, 2017
by
Andrew Heather
Browse files
COMP: Removed override directives to remove compiler warnings
parent
20fd33e3
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/db/functionObjects/regionFunctionObject/regionFunctionObject.H
View file @
99f31a75
...
...
@@ -176,7 +176,7 @@ public:
// Member Functions
//- Read optional controls
virtual
bool
read
(
const
dictionary
&
dict
)
override
;
virtual
bool
read
(
const
dictionary
&
dict
);
};
...
...
src/functionObjects/field/fieldValues/surfaceFieldValue/surfaceFieldValue.H
View file @
99f31a75
...
...
@@ -324,7 +324,7 @@ protected:
// Protected Member Functions
//- The volume mesh or surface registry being used
const
objectRegistry
&
obr
()
const
override
;
const
objectRegistry
&
obr
()
const
;
//- Return the local list of face IDs
inline
const
labelList
&
faceId
()
const
;
...
...
@@ -471,10 +471,10 @@ public:
inline
fileName
outputDir
()
const
;
//- Read from dictionary
virtual
bool
read
(
const
dictionary
&
dict
)
override
;
virtual
bool
read
(
const
dictionary
&
dict
);
//- Calculate and write
virtual
bool
write
()
override
;
virtual
bool
write
();
};
...
...
src/functionObjects/field/fieldValues/volFieldValue/volFieldValue.H
View file @
99f31a75
...
...
@@ -255,10 +255,10 @@ public:
// Public Member Functions
//- Read from dictionary
virtual
bool
read
(
const
dictionary
&
dict
)
override
;
virtual
bool
read
(
const
dictionary
&
dict
);
//- Calculate and write
virtual
bool
write
()
override
;
virtual
bool
write
();
};
...
...
src/sampling/surfMeshSampler/surfMeshSamplers/surfMeshSamplers.H
View file @
99f31a75
...
...
@@ -192,19 +192,19 @@ public:
void
verbose
(
const
bool
verbosity
=
true
);
//- Read the surfMeshSamplers dictionary
virtual
bool
read
(
const
dictionary
&
)
override
;
virtual
bool
read
(
const
dictionary
&
);
//- Execute, does sampling
virtual
bool
execute
()
override
;
virtual
bool
execute
();
//- Write sampled values
virtual
bool
write
()
override
;
virtual
bool
write
();
//- Update for changes of mesh - expires the surfaces
virtual
void
updateMesh
(
const
mapPolyMesh
&
)
override
;
virtual
void
updateMesh
(
const
mapPolyMesh
&
);
//- Update for mesh point-motion - expires the surfaces
virtual
void
movePoints
(
const
polyMesh
&
)
override
;
virtual
void
movePoints
(
const
polyMesh
&
);
//- Update for changes of mesh due to readUpdate - expires the surfaces
virtual
void
readUpdate
(
const
polyMesh
::
readUpdateState
state
);
...
...
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