From 269539741ce3e94b1e89260ed67b94b343e7d794 Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 29 Aug 2022 17:13:59 +0200 Subject: [PATCH] fix: move header in subdir --- README.md | 2 +- example.cpp | 2 +- exceptions.h => exceptions/exceptions.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename exceptions.h => exceptions/exceptions.h (100%) diff --git a/README.md b/README.md index 6aa3bb9..ecb8503 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Example #include #include -#include "exceptions.h" +#include // Use this macro to build up your hierarchy of exceptions EXCEPTION( Exception, Existential_Observation ); diff --git a/example.cpp b/example.cpp index 5b624c5..96d570e 100644 --- a/example.cpp +++ b/example.cpp @@ -5,7 +5,7 @@ #include #include -#include "exceptions.h" +#include "exceptions/exceptions.h" // Use this macro to build up your hierarchy of exceptions EXCEPTION( Exception, Existential_Observation ); diff --git a/exceptions.h b/exceptions/exceptions.h similarity index 100% rename from exceptions.h rename to exceptions/exceptions.h