Skip to content

Commit

Permalink
apply clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
auto code formatter authored and DiogoMendonc-a committed Sep 18, 2023
1 parent 7b73382 commit 82ac899
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion core/include/cubos/core/data/serialization_map.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ namespace cubos::core::data

/// @brief Returns the internal map that maps references to IDs
/// @return Map of references and Ids.
inline std::unordered_map<R, I> getMap() const {
inline std::unordered_map<R, I> getMap() const
{
return mRefToId;
}

Expand Down
4 changes: 2 additions & 2 deletions core/include/cubos/core/ecs/blueprint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ namespace cubos::core::ecs

/// @brief Returns the internal map that maps entities to their names
/// @return Map of entities and names.
inline std::unordered_map<Entity, std::string> getMap() const {
inline std::unordered_map<Entity, std::string> getMap() const
{
return mMap.getMap();
}


private:
friend class CommandBuffer;

Expand Down

0 comments on commit 82ac899

Please sign in to comment.