Skip to content

Commit

Permalink
fix some compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed May 22, 2013
1 parent 132bbf7 commit 8e13e2c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions aeolus/sparm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ SyntiParameterData::SyntiParameterData(int i, const QString& name, const QString
_sval = val;
}

SyntiParameterData::~SyntiParameterData()
{
}

SyntiParameterData::SyntiParameterData(const SyntiParameterData& pd)
: QSharedData(pd)
{
Expand Down
1 change: 1 addition & 0 deletions aeolus/sparm_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class SyntiParameterData : public QSharedData {

public:
SyntiParameterData();
virtual ~SyntiParameterData();
SyntiParameterData(const QString& name, float val);
SyntiParameterData(int id, const QString& name, float);
SyntiParameterData(const QString& name, const QString& val);
Expand Down
4 changes: 2 additions & 2 deletions zerberus/instrument.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
class Zerberus;
class XmlReader;
class QZipReader;
class Zone;
class SfzRegion;
struct Zone;
struct SfzRegion;
class Sample;

//---------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion zerberus/voice.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <math.h>

class Channel;
class Zone;
struct Zone;
class Sample;
class Zerberus;

Expand Down

0 comments on commit 8e13e2c

Please sign in to comment.