Bytecode: port to C++11 syntax for default constructors

Performed using modernize-use-equals-default from clang-tidy.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html
time-shift
Sébastien Villemot 2021-02-01 12:47:29 +01:00
parent 1aa0286f6d
commit a2186b06b8
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 3 deletions

View File

@ -25,9 +25,7 @@
#define SMALL 1.0e-5;
///#define DEBUG
Interpreter::~Interpreter()
{
}
Interpreter::~Interpreter() = default;
Interpreter::Interpreter(double *params_arg, double *y_arg, double *ya_arg, double *x_arg, double *steady_y_arg, double *steady_x_arg,
double *direction_arg, size_t y_size_arg,