1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-01 02:17:59 +00:00

Improve consistency in header guard names

This commit is contained in:
Carles Fernandez
2019-02-10 00:16:57 +01:00
parent a63d7834f4
commit 59841057e9
2 changed files with 6 additions and 6 deletions

View File

@@ -28,8 +28,8 @@
* -------------------------------------------------------------------------
*/
#ifndef MONITOR_PVT_H_
#define MONITOR_PVT_H_
#ifndef GNSS_SDR_MONITOR_PVT_H_
#define GNSS_SDR_MONITOR_PVT_H_
#include <boost/serialization/nvp.hpp>
#include <cstdint>
@@ -137,4 +137,4 @@ public:
}
};
#endif /* MONITOR_PVT_H_ */
#endif /* GNSS_SDR_MONITOR_PVT_H_ */

View File

@@ -29,8 +29,8 @@
* -------------------------------------------------------------------------
*/
#ifndef MONITOR_PVT_UDP_SINK_H_
#define MONITOR_PVT_UDP_SINK_H_
#ifndef GNSS_SDR_MONITOR_PVT_UDP_SINK_H_
#define GNSS_SDR_MONITOR_PVT_UDP_SINK_H_
#include "monitor_pvt.h"
#include <boost/asio.hpp>
@@ -50,4 +50,4 @@ private:
};
#endif /* MONITOR_PVT_UDP_SINK_H_ */
#endif /* GNSS_SDR_MONITOR_PVT_UDP_SINK_H_ */