Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
cb9e63db
Commit
cb9e63db
authored
8 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[Material] Add const for consistency.
parent
1efafe1e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MaterialLib/PorousMedium/Porosity/ConstantPorosity.h
+1
-1
1 addition, 1 deletion
MaterialLib/PorousMedium/Porosity/ConstantPorosity.h
MaterialLib/PorousMedium/Porosity/Porosity.h
+1
-1
1 addition, 1 deletion
MaterialLib/PorousMedium/Porosity/Porosity.h
with
2 additions
and
2 deletions
MaterialLib/PorousMedium/Porosity/ConstantPorosity.h
+
1
−
1
View file @
cb9e63db
...
@@ -31,7 +31,7 @@ public:
...
@@ -31,7 +31,7 @@ public:
* @param variable A variable with any double type value.
* @param variable A variable with any double type value.
* @param temperature Temperature with any double type value.
* @param temperature Temperature with any double type value.
*/
*/
double
getValue
(
const
double
variable
,
double
temperature
)
const
override
double
getValue
(
const
double
variable
,
const
double
temperature
)
const
override
{
{
(
void
)
variable
;
(
void
)
variable
;
(
void
)
temperature
;
(
void
)
temperature
;
...
...
This diff is collapsed.
Click to expand it.
MaterialLib/PorousMedium/Porosity/Porosity.h
+
1
−
1
View file @
cb9e63db
...
@@ -33,7 +33,7 @@ public:
...
@@ -33,7 +33,7 @@ public:
* @param temperature Temperature.
* @param temperature Temperature.
*/
*/
virtual
double
getValue
(
const
double
variable
,
virtual
double
getValue
(
const
double
variable
,
double
temperature
)
const
=
0
;
const
double
temperature
)
const
=
0
;
};
};
}
// end of namespace
}
// end of namespace
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment