From b1d71993da76ab407257aa95c9216e79aa23af52 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Sat, 8 Aug 2026 01:38:41 +0200 Subject: [PATCH] format fix --- .../Engine/Include/Engine/Asset/AssetContainer.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Bigfoot/Sources/Engine/Include/Engine/Asset/AssetContainer.hpp b/Bigfoot/Sources/Engine/Include/Engine/Asset/AssetContainer.hpp index 1a4d5e8..592f596 100644 --- a/Bigfoot/Sources/Engine/Include/Engine/Asset/AssetContainer.hpp +++ b/Bigfoot/Sources/Engine/Include/Engine/Asset/AssetContainer.hpp @@ -124,7 +124,7 @@ class AssetContainerBase /* * Check if an Asset is in the AssetContainer or not - * + * * \param p_uuid The UUID to check * \return True if in AssetContainer, false otherwise */ @@ -138,7 +138,7 @@ class AssetContainerBase /* * Acquires a ContainerHandle for a given UUID * Will create it if it does not exists - * + * * \param p_uuid The UUID to get ContainerHandle for * \return A ContainerHandle for the UUID */ @@ -150,7 +150,7 @@ class AssetContainerBase /* * Remove an Asset from the AssetContainer - * + * * \param p_uuid The UUID to remove */ virtual void Remove(const UUID& p_uuid) @@ -186,7 +186,7 @@ class AssetContainerBase /* * Finds an entry matching the Asset - * + * * \param p_uuid The UUID to find * \return Pointer to an Entry, nullptr otherwise */ @@ -248,7 +248,7 @@ class AssetContainerBase StableSlotMap m_handles; /* - * Every Asset added to the map + * Every Asset added to the map */ ankerl::unordered_dense::segmented_map m_uuidToEntry; }; @@ -268,7 +268,7 @@ class AssetContainer: public AssetContainerBase /* * Inserts an Asset to the AssetContainer - * + * * \tparam ARGS Arguments to construct the asset * \param p_args The arguments * \return The key to the inserted asset.