diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 14:19:41 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 15:20:08 +0100 |
commit | d1b18af7eea09312825a29bc8c6e797a845bdf77 (patch) | |
tree | ec3f9d3c0821baebf585ae7d9c2ce36353540923 /src/Queue.hpp | |
parent | 0bfe044a8d2f5baab02e8e7f599d5459664ba11c (diff) | |
download | patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.tar.gz patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.tar.bz2 patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.zip |
Clean up include guards
Diffstat (limited to 'src/Queue.hpp')
-rw-r--r-- | src/Queue.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Queue.hpp b/src/Queue.hpp index 7f1e399..96d267e 100644 --- a/src/Queue.hpp +++ b/src/Queue.hpp @@ -1,5 +1,5 @@ /* This file is part of Patchage. - * Copyright 2007-2017 David Robillard <http://drobilla.net> + * Copyright 2007-2020 David Robillard <d@drobilla.net> * * Patchage is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free @@ -13,8 +13,8 @@ * Patchage. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef QUEUE_HPP_INCLUDED -#define QUEUE_HPP_INCLUDED +#ifndef PATCHAGE_QUEUE_HPP +#define PATCHAGE_QUEUE_HPP #include <atomic> #include <cassert> @@ -126,4 +126,4 @@ Queue<T>::pop() _front = (_front.load() + 1) % (_size); } -#endif // QUEUE_HPP_INCLUDED +#endif // PATCHAGE_QUEUE_HPP |