format fix
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 0s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Failing after 0s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 1s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Failing after 0s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 0s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Failing after 0s
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Failing after 0s
Bigfoot / Clang Format Checks (push) Successful in 14s

This commit is contained in:
2026-08-08 01:38:41 +02:00
parent 1b32cd07f6
commit b1d71993da
@@ -124,7 +124,7 @@ class AssetContainerBase
/* /*
* Check if an Asset is in the AssetContainer or not * Check if an Asset is in the AssetContainer or not
* *
* \param p_uuid The UUID to check * \param p_uuid The UUID to check
* \return True if in AssetContainer, false otherwise * \return True if in AssetContainer, false otherwise
*/ */
@@ -138,7 +138,7 @@ class AssetContainerBase
/* /*
* Acquires a ContainerHandle for a given UUID * Acquires a ContainerHandle for a given UUID
* Will create it if it does not exists * Will create it if it does not exists
* *
* \param p_uuid The UUID to get ContainerHandle for * \param p_uuid The UUID to get ContainerHandle for
* \return A ContainerHandle for the UUID * \return A ContainerHandle for the UUID
*/ */
@@ -150,7 +150,7 @@ class AssetContainerBase
/* /*
* Remove an Asset from the AssetContainer * Remove an Asset from the AssetContainer
* *
* \param p_uuid The UUID to remove * \param p_uuid The UUID to remove
*/ */
virtual void Remove(const UUID& p_uuid) virtual void Remove(const UUID& p_uuid)
@@ -186,7 +186,7 @@ class AssetContainerBase
/* /*
* Finds an entry matching the Asset * Finds an entry matching the Asset
* *
* \param p_uuid The UUID to find * \param p_uuid The UUID to find
* \return Pointer to an Entry, nullptr otherwise * \return Pointer to an Entry, nullptr otherwise
*/ */
@@ -248,7 +248,7 @@ class AssetContainerBase
StableSlotMap<ContainerHandle> m_handles; StableSlotMap<ContainerHandle> m_handles;
/* /*
* Every Asset added to the map * Every Asset added to the map
*/ */
ankerl::unordered_dense::segmented_map<UUID, Entry> m_uuidToEntry; ankerl::unordered_dense::segmented_map<UUID, Entry> m_uuidToEntry;
}; };
@@ -268,7 +268,7 @@ class AssetContainer: public AssetContainerBase
/* /*
* Inserts an Asset to the AssetContainer * Inserts an Asset to the AssetContainer
* *
* \tparam ARGS Arguments to construct the asset * \tparam ARGS Arguments to construct the asset
* \param p_args The arguments * \param p_args The arguments
* \return The key to the inserted asset. * \return The key to the inserted asset.