fix some warnings produced by clang 6

they are all harmless.
This commit is contained in:
Andreas Lauser
2018-10-29 10:05:46 +01:00
parent f03711aff6
commit 1d16dfc3fa

View File

@@ -119,6 +119,8 @@ namespace Miscibility {
class RsFunction
{
public:
virtual ~RsFunction() = default;
/**
* Function call operator.
*
@@ -147,6 +149,8 @@ public:
class NoMixing : public RsFunction
{
public:
virtual ~NoMixing() = default;
/**
* Function call.
*
@@ -197,6 +201,8 @@ public:
, rsVsDepth_(depth, rs)
{}
virtual ~RsVD() = default;
/**
* Function call.
*
@@ -264,6 +270,8 @@ public:
, pbubVsDepth_(depth, pbub)
{}
virtual ~PBVD() = default;
/**
* Function call.
*
@@ -330,6 +338,8 @@ public:
, pdewVsDepth_(depth, pdew)
{}
virtual ~PDVD() = default;
/**
* Function call.
*