diff options
author | David Robillard <d@drobilla.net> | 2020-11-12 01:31:42 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-12 01:47:41 +0100 |
commit | 6a08c7997967816c959ac76dbf296a0f1215b295 (patch) | |
tree | 05a6796e30a5e16d625230327d3a08cc637f39eb /include/raul | |
parent | bf9190ef628c1aa04791af1bd7cd4905e9c24658 (diff) | |
download | raul-6a08c7997967816c959ac76dbf296a0f1215b295.tar.gz raul-6a08c7997967816c959ac76dbf296a0f1215b295.tar.bz2 raul-6a08c7997967816c959ac76dbf296a0f1215b295.zip |
Fix include guards
Diffstat (limited to 'include/raul')
-rw-r--r-- | include/raul/Exception.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/raul/Exception.hpp b/include/raul/Exception.hpp index da4a0e0..86fe01d 100644 --- a/include/raul/Exception.hpp +++ b/include/raul/Exception.hpp @@ -14,13 +14,13 @@ along with Raul. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef RAUL_EXCEPTION_HPP +#define RAUL_EXCEPTION_HPP + #include <exception> #include <string> #include <utility> -#ifndef RAUL_EXCEPTION_HPP -#define RAUL_EXCEPTION_HPP - namespace Raul { /** An exception (unexpected error). */ |