summaryrefslogtreecommitdiff
path: root/src/MXFTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/MXFTypes.h')
-rwxr-xr-xsrc/MXFTypes.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/MXFTypes.h b/src/MXFTypes.h
index baf27c4..0f38e9d 100755
--- a/src/MXFTypes.h
+++ b/src/MXFTypes.h
@@ -158,6 +158,7 @@ namespace ASDCP
}
void Dump(FILE* stream = 0, ui32_t depth = 0) {
+ (void) depth;
char identbuf[IdentBufferLen];
if ( stream == 0 )
@@ -253,6 +254,7 @@ namespace ASDCP
//
void Dump(FILE* stream = 0, ui32_t depth = 0)
{
+ (void) depth;
char identbuf[IdentBufferLen];
if ( stream == 0 )
@@ -672,17 +674,8 @@ namespace ASDCP
{
public:
Raw();
- Raw(const Raw& rhs) { Copy(rhs); }
virtual ~Raw();
- const Raw& operator=(const Raw& rhs) { Copy(rhs); return *this; }
- void Copy(const Raw& rhs) {
- if ( KM_SUCCESS(Capacity(rhs.Length())) )
- {
- Set(rhs);
- }
- }
-
//
virtual bool Unarchive(Kumu::MemIOReader* Reader);
virtual bool Archive(Kumu::MemIOWriter* Writer) const;