diff --git a/src/Collections/List.hpp b/src/Collections/List.hpp index 817c831..453f6c0 100644 --- a/src/Collections/List.hpp +++ b/src/Collections/List.hpp @@ -1,7 +1,7 @@ #ifndef ARBUTILS_LIST_HPP #define ARBUTILS_LIST_HPP -#include #include +#include #include "../Exception.hpp" namespace ArbUt { diff --git a/src/Memory/__UniquePtr.hpp b/src/Memory/__UniquePtr.hpp index 8e5f1d1..1ce4411 100644 --- a/src/Memory/__UniquePtr.hpp +++ b/src/Memory/__UniquePtr.hpp @@ -3,7 +3,6 @@ #include "../Ensure.hpp" - namespace ArbUt { /// @brief A unique pointer is used to indicate a pointer that is owned by its holder, and will be deleted when its /// owner is deleted. As with all Arbutils pointers, this cannot be assigned null. Use an OptionalUniquePtr for