summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-12 01:31:42 +0100
committerDavid Robillard <d@drobilla.net>2020-11-12 01:47:41 +0100
commit6a08c7997967816c959ac76dbf296a0f1215b295 (patch)
tree05a6796e30a5e16d625230327d3a08cc637f39eb
parentbf9190ef628c1aa04791af1bd7cd4905e9c24658 (diff)
downloadraul-6a08c7997967816c959ac76dbf296a0f1215b295.tar.gz
raul-6a08c7997967816c959ac76dbf296a0f1215b295.tar.bz2
raul-6a08c7997967816c959ac76dbf296a0f1215b295.zip
Fix include guards
-rw-r--r--include/raul/Exception.hpp6
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). */