Err, really remove the copy ctor (removed the assignment operator
last time)
This commit is contained in:
@@ -28,11 +28,6 @@ NoteData::NoteData()
|
|||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
NoteData::NoteData(const NoteData &cpy)
|
|
||||||
{
|
|
||||||
*this = cpy;
|
|
||||||
}
|
|
||||||
|
|
||||||
void NoteData::Init()
|
void NoteData::Init()
|
||||||
{
|
{
|
||||||
m_iNumTracks = 0;
|
m_iNumTracks = 0;
|
||||||
|
|||||||
@@ -32,7 +32,6 @@ class NoteData
|
|||||||
public:
|
public:
|
||||||
NoteData();
|
NoteData();
|
||||||
~NoteData();
|
~NoteData();
|
||||||
NoteData(const NoteData &cpy);
|
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
int m_iNumTracks;
|
int m_iNumTracks;
|
||||||
|
|||||||
Reference in New Issue
Block a user