From 69714084d6bd7e5da093281ee7be75bdd9777d75 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sun, 21 Nov 2021 12:34:00 +0100 Subject: [PATCH] Style fixes. --- src/Collections/List.hpp | 2 +- src/Memory/__UniquePtr.hpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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