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