Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mbdyn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DAER
mbdyn
Merge requests
!128
Fix compiler warning -Wunused-function
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix compiler warning -Wunused-function
fix-module-hydrodynamic_plain_bearing2-Wunused-function
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Reinhard Resch
requested to merge
fix-module-hydrodynamic_plain_bearing2-Wunused-function
into
develop
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Fix compiler warning about unused functions in module-hydrodynamic_plain_bearing2.
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
929fae59
1 commit,
1 year ago
1 file
+
0
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/module-hydrodynamic_plain_bearing2/module-hydrodynamic_plain_bearing2.cc
+
0
−
20
Options
@@ -4483,8 +4483,6 @@ namespace {
virtual ~HydroMesh();
int GetNumConnectedNodes() const;
void GetConnectedNodes(std::vector<const Node*>& rgNodes) const;
int GetNumConnectedElements() const;
void GetConnectedElements(std::vector<const ElemWithDofs*>& rgElem) const;
/**
* @param p returns the pressure at the node by taking into account
* the specific boundary conditions of the selected elements
@@ -22697,24 +22695,6 @@ namespace {
}
}
int HydroMesh::GetNumConnectedElements() const
{
int iNumConnectedElements = 0;
if (pCompliance) {
iNumConnectedElements += pCompliance->GetNumConnectedElements();
}
return iNumConnectedElements;
}
void HydroMesh::GetConnectedElements(std::vector<const ElemWithDofs*>& rgElem) const
{
if (pCompliance) {
pCompliance->GetConnectedElements(rgElem);
}
}
void HydroMesh::ParseGeometry(DataManager* pDM, MBDynParser& HP)
{
if (!HP.IsKeyWord("geometry")) {
Loading