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 committed Aug 24, 2023
1 parent 162ffa3 commit 4d2d0ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engine/include/cubos/engine/assets/meta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ namespace cubos::engine
}

private:
std::unordered_map<std::string, std::string> mParams;///< Parameters of the asset.
std::unordered_map<std::string, std::string> mParams; ///< Parameters of the asset.
};
} // namespace cubos::engine
2 changes: 1 addition & 1 deletion engine/include/cubos/engine/input/action.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ namespace cubos::engine
private:
std::vector<std::pair<core::io::Key, core::io::Modifiers>> mKeys;

bool mPressed;///< Not serialized.
bool mPressed; ///< Not serialized.
};
} // namespace cubos::engine
2 changes: 1 addition & 1 deletion engine/include/cubos/engine/input/axis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ namespace cubos::engine
std::vector<std::pair<core::io::Key, core::io::Modifiers>> mPositive;
std::vector<std::pair<core::io::Key, core::io::Modifiers>> mNegative;

float mValue;///< Not serialized.
float mValue; ///< Not serialized.
};
} // namespace cubos::engine

0 comments on commit 4d2d0ef

Please sign in to comment.