1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-08 00:44:48 -04:00

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
@@ -24,7 +24,7 @@
#include <QByteArray>
#include <QString>
#include <dsp/dsptypes.h>
#include "dsp/dsptypes.h"
class Serializable;
+1 -1
View File
@@ -23,7 +23,7 @@
#define SDRBASE_DSP_CHANNELSAMPLESINK_H_
#include "export.h"
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class Message;
+1 -1
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:
+1 -1
View File
@@ -21,7 +21,7 @@
#define SDRBASE_DSP_GLSPECTRUMINTERFACE_H_
#include <vector>
#include "dsptypes.h"
#include "dsp/dsptypes.h"
class GLSpectrumInterface
{
+1 -1
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
{