Skip to content

Commit

Permalink
fix: reimplementing the libusb-1.0 into the include statement
Browse files Browse the repository at this point in the history
+ added "libusb-1.0" to include statement after removing it as it wasnt doing anything by removing it.
  • Loading branch information
CooperW824 committed Aug 13, 2021
1 parent 14c5dc9 commit e5a2a61
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "usbdevice.h"
#include "usbdeviceimporteditor.h"
#include <libusb.h>
#include <libusb-1.0/libusb.h>
#include <iostream>
#include <chrono>
#include <thread>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "importexportinterface.h"
#include "parameterdelegate.h"
#include <libusb.h>
#include <libusb-1.0/libusb.h>

class USBDevice : public QObject, ImporterExporterInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "usbdeviceimporteditor.h"
#include "ui_usbdeviceimporteditor.h"
#include <libusb.h>
#include <libusb-1.0/libusb.h>
#include <string>
#include <sstream>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "abstractparametereditor.h"
#include "parameterhelper.h"
#include <libusb.h>
#include <libusb-1.0/libusb.h>
#include "importresult.h"

namespace Ui
Expand Down

0 comments on commit e5a2a61

Please sign in to comment.