Skip to content

Commit

Permalink
Merge pull request #1 from chuvke/master
Browse files Browse the repository at this point in the history
Fixed compilation errors due to missing includes
  • Loading branch information
PixlOne committed May 15, 2020
2 parents 8fa6d2b + 47a97b7 commit c64ec3a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/libhidpp/hidpp/Device.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <hidpp/defs.h>
#include <hidpp/Report.h>
#include <tuple>
#include <string>

namespace HIDPP
{
Expand Down
1 change: 1 addition & 0 deletions src/libhidpp/hidpp/Report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <hidpp10/defs.h>
#include <hidpp20/defs.h>
#include <algorithm>
#include <stdexcept>

using namespace HIDPP;

Expand Down
1 change: 1 addition & 0 deletions src/libhidpp/hidpp/Setting.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include <vector>
#include <map>
#include <stdexcept>

#include <hidpp/Enum.h>

Expand Down
1 change: 1 addition & 0 deletions src/libhidpp/hidpp10/IMemory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <misc/Endian.h>

#include <algorithm>
#include <stdexcept>

using namespace HIDPP;
using namespace HIDPP10;
Expand Down
1 change: 1 addition & 0 deletions src/libhidpp/hidpp10/IProfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <hidpp10/Device.h>
#include <hidpp10/defs.h>
#include <stdexcept>

using namespace HIDPP;
using namespace HIDPP10;
Expand Down
1 change: 1 addition & 0 deletions src/libhidpp/hidpp10/IResolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <hidpp10/Sensor.h>

#include <misc/Endian.h>
#include <stdexcept>

using namespace HIDPP10;

Expand Down

0 comments on commit c64ec3a

Please sign in to comment.