diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-11 11:16:02 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-23 22:59:30 +0100 |
| commit | cdcb01ddfc021859f4bfdcc5a61ecfab24a5700c (patch) | |
| tree | 01f742c736fe1369aa8f65a864657f017b2c047a /src | |
| parent | 116a311d779b13d5e3626c2813677ae41c2f30bf (diff) | |
Add call to parent constructor.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/MXFTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MXFTypes.h b/src/MXFTypes.h index b1aa39a..b032b4b 100755 --- a/src/MXFTypes.h +++ b/src/MXFTypes.h @@ -520,7 +520,7 @@ namespace ASDCP { public: Raw(); - Raw(const Raw& rhs) { Copy(rhs); } + Raw(const Raw& rhs) : Kumu::ByteString() { Copy(rhs); } virtual ~Raw(); const Raw& operator=(const Raw& rhs) { Copy(rhs); return *this; } |
