Make all include directives identical

Fixes the 5 includes that are different from the majority:
grep -Ehr "#include .+dsptypes" --include=*.h | sort | uniq -c
    110 #include "dsp/dsptypes.h"
      1 #include <dsp/dsptypes.h>
      4 #include "dsptypes.h"
This commit is contained in:
Daniele Forsi 2024-04-20 19:15:25 +02:00
parent 570c1f6877
commit fe84c20aff
5 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@
#include <QByteArray>
#include <QString>
#include <dsp/dsptypes.h>
#include "dsp/dsptypes.h"
class Serializable;

View File

@ -23,7 +23,7 @@
#define SDRBASE_DSP_CHANNELSAMPLESINK_H_
#include "export.h"
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class Message;

View File

@ -23,7 +23,7 @@
#define SDRBASE_DSP_CHANNELSAMPLESOURCE_H_
#include "export.h"
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class SDRBASE_API ChannelSampleSource {
public:

View File

@ -21,7 +21,7 @@
#define SDRBASE_DSP_GLSPECTRUMINTERFACE_H_
#include <vector>
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class GLSpectrumInterface
{

View File

@ -22,7 +22,7 @@
#define SDRBASE_DSP_PROJECTOR_H
#include "export.h"
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class SDRBASE_API Projector
{