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