This patch was generated using clang-tidy:
clang-tidy -checks="-*,modernize-use-equals-default" -fix
(with manual fixups to move the "= default" to the .hpp)
namespace data {
namespace decode {
-RowData::RowData()
-{
-}
-
uint64_t RowData::get_max_sample() const
{
if (annotations_.empty())
class RowData
{
public:
- RowData();
+ RowData() = default;
public:
uint64_t get_max_sample() const;
namespace pv {
namespace devices {
-Device::Device()
-{
-}
-
Device::~Device()
{
if (session_)
class Device
{
protected:
- Device();
+ Device() = default;
public:
virtual ~Device();