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"
pull/2076/head
Daniele Forsi 2024-04-20 19:15:25 +02:00
rodzic 570c1f6877
commit fe84c20aff
5 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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