diff options
author | David Robillard <d@drobilla.net> | 2018-09-16 21:21:20 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-16 21:21:20 +0200 |
commit | 5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8 (patch) | |
tree | c9fb4a4e54d89d7df85701110e194390dbd04db4 /raul | |
parent | 2c7828c9c420f3369d09e038371863c095e53c61 (diff) | |
download | raul-5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8.tar.gz raul-5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8.tar.bz2 raul-5cb9ce065405c4e37d9a0f18b0995262cf0c1ac8.zip |
Clean up include guards
Diffstat (limited to 'raul')
-rw-r--r-- | raul/DoubleBuffer.hpp | 6 | ||||
-rw-r--r-- | raul/RingBuffer.hpp | 6 | ||||
-rw-r--r-- | raul/TimeSlice.hpp | 6 | ||||
-rw-r--r-- | raul/TimeStamp.hpp | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/raul/DoubleBuffer.hpp b/raul/DoubleBuffer.hpp index 31bc8bf..3c4d934 100644 --- a/raul/DoubleBuffer.hpp +++ b/raul/DoubleBuffer.hpp @@ -14,8 +14,8 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef RAUL_DOUBLE_BUFFER_HPP -#define RAUL_DOUBLE_BUFFER_HPP +#ifndef RAUL_DOUBLEBUFFER_HPP +#define RAUL_DOUBLEBUFFER_HPP #include <atomic> #include <utility> @@ -89,4 +89,4 @@ private: } // namespace Raul -#endif // RAUL_DOUBLE_BUFFER_HPP +#endif // RAUL_DOUBLEBUFFER_HPP diff --git a/raul/RingBuffer.hpp b/raul/RingBuffer.hpp index d92c16b..574b8b8 100644 --- a/raul/RingBuffer.hpp +++ b/raul/RingBuffer.hpp @@ -14,8 +14,8 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef RAUL_RING_BUFFER_HPP -#define RAUL_RING_BUFFER_HPP +#ifndef RAUL_RINGBUFFER_HPP +#define RAUL_RINGBUFFER_HPP #include "raul/Noncopyable.hpp" @@ -213,4 +213,4 @@ private: } // namespace Raul -#endif // RAUL_RING_BUFFER_HPP +#endif // RAUL_RINGBUFFER_HPP diff --git a/raul/TimeSlice.hpp b/raul/TimeSlice.hpp index 92979b0..c72ca03 100644 --- a/raul/TimeSlice.hpp +++ b/raul/TimeSlice.hpp @@ -14,8 +14,8 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef RAUL_TIME_SLICE_HPP -#define RAUL_TIME_SLICE_HPP +#ifndef RAUL_TIMESLICE_HPP +#define RAUL_TIMESLICE_HPP #include "raul/Noncopyable.hpp" #include "raul/TimeStamp.hpp" @@ -153,4 +153,4 @@ private: } // namespace Raul -#endif // RAUL_TIME_SLICE_HPP +#endif // RAUL_TIMESLICE_HPP diff --git a/raul/TimeStamp.hpp b/raul/TimeStamp.hpp index dbbc163..0c671b2 100644 --- a/raul/TimeStamp.hpp +++ b/raul/TimeStamp.hpp @@ -14,8 +14,8 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef RAUL_TIME_STAMP_HPP -#define RAUL_TIME_STAMP_HPP +#ifndef RAUL_TIMESTAMP_HPP +#define RAUL_TIMESTAMP_HPP #include <cassert> #include <cmath> @@ -227,4 +227,4 @@ typedef TimeStamp TimeDuration; } // namespace Raul -#endif // RAUL_TIME_STAMP_HPP +#endif // RAUL_TIMESTAMP_HPP |