Any class that doesn't initialize all members in the ctor.
From: Erik Hovland <erik@hovland.org>
---
mythtv/libs/libmythtv/dtvmultiplex.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/mythtv/libs/libmythtv/dtvmultiplex.h b/mythtv/libs/libmythtv/dtvmultiplex.h
index 194f2e5..e793719 100644
a
|
b
|
class ScanDTVTransport : public DTVMultiplex |
84 | 84 | { |
85 | 85 | public: |
86 | 86 | ScanDTVTransport() : |
87 | | DTVMultiplex(), tuner_type(DTVTunerType::kTunerTypeUnknown) { } |
| 87 | DTVMultiplex(), tuner_type(DTVTunerType::kTunerTypeUnknown), |
| 88 | cardid(0) { } |
88 | 89 | ScanDTVTransport(const DTVMultiplex &mplex, DTVTunerType tt, uint cid) : |
89 | 90 | DTVMultiplex(mplex), tuner_type(tt), cardid(cid) { } |
90 | 91 | virtual ~ScanDTVTransport() {} |