diff options
author | David Robillard <d@drobilla.net> | 2020-12-01 19:39:13 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-01 19:39:13 +0100 |
commit | 6417299c90009f1eca68d58d62f8e46043aabce3 (patch) | |
tree | f1f3dbac79895a464e09ad6db74ee81a9887d966 | |
parent | b3580d099d8012cfed26a9032b276b4bf8246a46 (diff) | |
download | patchage-6417299c90009f1eca68d58d62f8e46043aabce3.tar.gz patchage-6417299c90009f1eca68d58d62f8e46043aabce3.tar.bz2 patchage-6417299c90009f1eca68d58d62f8e46043aabce3.zip |
Fix include guards
-rw-r--r-- | src/Canvas.hpp | 6 | ||||
-rw-r--r-- | src/CanvasModule.hpp | 6 | ||||
-rw-r--r-- | src/CanvasPort.hpp | 6 | ||||
-rw-r--r-- | src/Event.hpp | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/src/Canvas.hpp b/src/Canvas.hpp index 1c1af81..ff5d525 100644 --- a/src/Canvas.hpp +++ b/src/Canvas.hpp @@ -14,8 +14,8 @@ * along with Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PATCHAGE_PATCHAGECANVAS_HPP -#define PATCHAGE_PATCHAGECANVAS_HPP +#ifndef PATCHAGE_CANVAS_HPP +#define PATCHAGE_CANVAS_HPP #include "patchage_config.h" @@ -81,4 +81,4 @@ private: } // namespace patchage -#endif // PATCHAGE_PATCHAGECANVAS_HPP +#endif // PATCHAGE_CANVAS_HPP diff --git a/src/CanvasModule.hpp b/src/CanvasModule.hpp index 3b65b67..904051a 100644 --- a/src/CanvasModule.hpp +++ b/src/CanvasModule.hpp @@ -14,8 +14,8 @@ * along with Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PATCHAGE_PATCHAGEMODULE_HPP -#define PATCHAGE_PATCHAGEMODULE_HPP +#ifndef PATCHAGE_CANVASMODULE_HPP +#define PATCHAGE_CANVASMODULE_HPP #include "ClientID.hpp" #include "SignalDirection.hpp" @@ -84,4 +84,4 @@ protected: } // namespace patchage -#endif // PATCHAGE_PATCHAGEMODULE_HPP +#endif // PATCHAGE_CANVASMODULE_HPP diff --git a/src/CanvasPort.hpp b/src/CanvasPort.hpp index 5607f04..60695df 100644 --- a/src/CanvasPort.hpp +++ b/src/CanvasPort.hpp @@ -14,8 +14,8 @@ * along with Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PATCHAGE_PATCHAGEPORT_HPP -#define PATCHAGE_PATCHAGEPORT_HPP +#ifndef PATCHAGE_CANVASPORT_HPP +#define PATCHAGE_CANVASPORT_HPP #include "Canvas.hpp" #include "CanvasModule.hpp" @@ -108,4 +108,4 @@ private: } // namespace patchage -#endif // PATCHAGE_PATCHAGEPORT_HPP +#endif // PATCHAGE_CANVASPORT_HPP diff --git a/src/Event.hpp b/src/Event.hpp index aa485c1..406345d 100644 --- a/src/Event.hpp +++ b/src/Event.hpp @@ -14,8 +14,8 @@ * along with Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PATCHAGE_PATCHAGEEVENT_HPP -#define PATCHAGE_PATCHAGEEVENT_HPP +#ifndef PATCHAGE_EVENT_HPP +#define PATCHAGE_EVENT_HPP #include "ClientID.hpp" #include "ClientInfo.hpp" @@ -85,4 +85,4 @@ using Event = boost::variant<DriverAttachmentEvent, } // namespace patchage -#endif // PATCHAGE_PATCHAGEEVENT_HPP +#endif // PATCHAGE_EVENT_HPP |