Skip to content

Commit

Permalink
fix headers linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rrhan0 committed Oct 13, 2024
1 parent af3d59e commit 1d6cbdb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/CameraController.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2024 UBC Uncrewed Aircraft Systems

#ifndef SRC_CAMERACONTROLLER_H_
#define SRC_CAMERACONTROLLER_H_
#ifndef SRC_CAMERACONTROLLER_HPP_
#define SRC_CAMERACONTROLLER_HPP_

#include "ArenaApi.h"
#include "SaveApi.h"
Expand Down Expand Up @@ -115,4 +115,4 @@ class CameraController {
void set_epoch();
};

#endif // SRC_CAMERACONTROLLER_H_
#endif // SRC_CAMERACONTROLLER_HPP_
6 changes: 3 additions & 3 deletions src/CprHTTP.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2024 UBC Uncrewed Aircraft Systems

#ifndef SRC_CPRHTTP_H_
#define SRC_CPRHTTP_H_
#ifndef SRC_CPRHTTP_HPP_
#define SRC_CPRHTTP_HPP_

#include <cpr/cpr.h>
#include <curl/curl.h>
Expand All @@ -16,4 +16,4 @@ class CprHTTP {
int64_t timestamp);
};

#endif // SRC_CPRHTTP_H_
#endif // SRC_CPRHTTP_HPP_
6 changes: 3 additions & 3 deletions src/HttpTransmitter.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2024 UBC Uncrewed Aircraft Systems

#ifndef SRC_HTTPTRANSMITTER_H_
#define SRC_HTTPTRANSMITTER_H_
#ifndef SRC_HTTPTRANSMITTER_HPP_
#define SRC_HTTPTRANSMITTER_HPP_

#include <curl/curl.h>

Expand All @@ -24,4 +24,4 @@ class HttpTransmitter {
CURL *curl;
};

#endif // SRC_HTTPTRANSMITTER_H_
#endif // SRC_HTTPTRANSMITTER_HPP_
6 changes: 3 additions & 3 deletions src/TSQueue.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2024 UBC Uncrewed Aircraft Systems

#ifndef SRC_TSQUEUE_H_
#define SRC_TSQUEUE_H_
#ifndef SRC_TSQUEUE_HPP_
#define SRC_TSQUEUE_HPP_

#include <utility>
#include <atomic>
Expand Down Expand Up @@ -66,4 +66,4 @@ class TSQueue {
}
};

#endif // SRC_TSQUEUE_H_
#endif // SRC_TSQUEUE_HPP_

0 comments on commit 1d6cbdb

Please sign in to comment.