Browse Source

explicit private constructor was not needed after all

tempestpy_adaptions
gereon 12 years ago
parent
commit
75d61d3af3
  1. 6
      src/modelchecker/DtmcPrctlModelChecker.h
  2. 6
      src/modelchecker/MdpPrctlModelChecker.h

6
src/modelchecker/DtmcPrctlModelChecker.h

@ -41,12 +41,6 @@ template<class Type>
class DtmcPrctlModelChecker :
public AbstractModelChecker<Type> {
private:
/*!
* Make default constructor private.
*/
explicit DtmcPrctlModelChecker() {}
public:
/*!
* Constructor

6
src/modelchecker/MdpPrctlModelChecker.h

@ -42,12 +42,6 @@ template<class Type>
class MdpPrctlModelChecker :
public AbstractModelChecker<Type> {
private:
/*!
* Make default constructor private.
*/
explicit MdpPrctlModelChecker() {}
public:
/*!
* Constructor

Loading…
Cancel
Save