Mercurial > hg > svcore
comparison data/osc/OSCMessage.h @ 972:a0573186435e
Fix some (probably benign) uninitialised members (from coverity scan)
author | Chris Cannam |
---|---|
date | Wed, 03 Sep 2014 11:10:22 +0100 |
parents | 59e7fe1b1003 |
children | ad5f892c0c4d |
comparison
equal
deleted
inserted
replaced
971:9869ea3a93b7 | 972:a0573186435e |
---|---|
30 #include "base/Debug.h" | 30 #include "base/Debug.h" |
31 | 31 |
32 class OSCMessage | 32 class OSCMessage |
33 { | 33 { |
34 public: | 34 public: |
35 OSCMessage() { } | 35 OSCMessage() : m_target(0), m_targetData(0) { } |
36 ~OSCMessage(); | 36 ~OSCMessage(); |
37 | 37 |
38 void setTarget(const int &target) { m_target = target; } | 38 void setTarget(const int &target) { m_target = target; } |
39 int getTarget() const { return m_target; } | 39 int getTarget() const { return m_target; } |
40 | 40 |