mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-12-13 20:18:04 +00:00
clang-tidy: apply modernize-use-equals-default fix. See https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
class ConfigurationInterface
|
||||
{
|
||||
public:
|
||||
virtual ~ConfigurationInterface() {}
|
||||
virtual ~ConfigurationInterface() = default;
|
||||
virtual std::string property(std::string property_name, std::string default_value) = 0;
|
||||
virtual bool property(std::string property_name, bool default_value) = 0;
|
||||
virtual int64_t property(std::string property_name, int64_t default_value) = 0;
|
||||
|
||||
Reference in New Issue
Block a user