Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
avp-avp committed Jan 22, 2017
1 parent e680865 commit da8dec9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libutils/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ libutils_la_SOURCES = Buffer.cpp Buffer.h Exception.cpp Exception.h \
Serializable.cpp Serializable.h XmlDocument.cpp Config.cpp Config.h \
XmlDocument.h ConfigItem.cpp ConfigItem.h libutils.cpp libutils.h locks.cpp locks.h \
logging.cpp logging.h md.h sha1c.cpp sha_locl.h stdafx.cpp stdafx.h strutils.cpp \
strutils.h targetver.h thread.cpp thread.h jsoncpp/jsoncpp.cpp
strutils.h targetver.h thread.cpp thread.h

AM_CFLAGS = -pthread
AM_CXXFLAGS = -pthread
Expand Down
5 changes: 5 additions & 0 deletions libwb/WBDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ CWBDevice::CWBDevice(string Name, string Description)

}

CWBDevice::CWBDevice()
{

}


CWBDevice::~CWBDevice()
{
Expand Down
2 changes: 1 addition & 1 deletion libwb/WBDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class LIBWB_API CWBDevice

public:
CWBDevice(string Name, string Description);
//CWBDevice();
CWBDevice();
~CWBDevice();

string getName(){return m_Name;};
Expand Down

0 comments on commit da8dec9

Please sign in to comment.