Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dumux-repositories
dumux
Commits
0bde2f55
Commit
0bde2f55
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[components][base] Make more methods constexpr
parent
c224d57b
No related branches found
No related tags found
1 merge request
!884
Fix/compile time not impl for clang
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/material/components/base.hh
+5
-5
5 additions, 5 deletions
dumux/material/components/base.hh
with
5 additions
and
5 deletions
dumux/material/components/base.hh
+
5
−
5
View file @
0bde2f55
...
...
@@ -76,7 +76,7 @@ public:
* \brief The molar mass in \f$\mathrm{[kg/mol]}\f$ of the component.
*/
template
<
class
C
=
Implementation
>
static
Scalar
molarMass
()
static
constexpr
Scalar
molarMass
()
{
static_assert
(
AlwaysFalse
<
C
>::
value
,
"Mandatory function not implemented: molarMass()"
);
DUNE_THROW
(
Dune
::
NotImplemented
,
"molarMass()"
);
...
...
@@ -86,7 +86,7 @@ public:
* \brief Returns the critical temperature in \f$\mathrm{[K]}\f$ of the component.
*/
template
<
class
C
=
Implementation
>
static
Scalar
criticalTemperature
()
static
constexpr
Scalar
criticalTemperature
()
{
static_assert
(
AlwaysFalse
<
C
>::
value
,
"Mandatory function not implemented: criticalTemperature()"
);
DUNE_THROW
(
Dune
::
NotImplemented
,
"criticalTemperature()"
);
...
...
@@ -96,7 +96,7 @@ public:
* \brief Returns the critical pressure in \f$\mathrm{[Pa]}\f$ of the component.
*/
template
<
class
C
=
Implementation
>
static
Scalar
criticalPressure
()
static
constexpr
Scalar
criticalPressure
()
{
static_assert
(
AlwaysFalse
<
C
>::
value
,
"Mandatory function not implemented: criticalPressure()"
);
DUNE_THROW
(
Dune
::
NotImplemented
,
"criticalPressure()"
);
...
...
@@ -106,7 +106,7 @@ public:
* \brief Returns the temperature in \f$\mathrm{[K]}\f$ at the component's triple point.
*/
template
<
class
C
=
Implementation
>
static
Scalar
tripleTemperature
()
static
constexpr
Scalar
tripleTemperature
()
{
static_assert
(
AlwaysFalse
<
C
>::
value
,
"Mandatory function not implemented: tripleTemperature()"
);
DUNE_THROW
(
Dune
::
NotImplemented
,
"tripleTemperature()"
);
...
...
@@ -116,7 +116,7 @@ public:
* \brief Returns the pressure in \f$\mathrm{[Pa]}\f$ at the component's triple point.
*/
template
<
class
C
=
Implementation
>
static
Scalar
triplePressure
()
static
constexpr
Scalar
triplePressure
()
{
static_assert
(
AlwaysFalse
<
C
>::
value
,
"Mandatory function not implemented: triplePressure()"
);
DUNE_THROW
(
Dune
::
NotImplemented
,
"triplePressure()"
);
...
...
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