Rename local parameter variables to use p_ prefix

This commit is contained in:
2025-04-13 10:04:53 +10:00
parent 8efa200e9e
commit 859547570b
8 changed files with 81 additions and 74 deletions

View File

@@ -26,13 +26,13 @@ bool Debug::is_debug() {
#endif
}
void Internals::_assert_fail(std::string_view assertion, std::string_view file, std::string_view func, int line) {
void Internals::_assert_fail(std::string_view p_assertion, std::string_view p_file, std::string_view p_func, int p_line) {
Debug::get_logger()->critical(
"ASSERTION FAILED\n Assertion: \"{}\"\n File: \"{}\" (line {})\n Function: {}()",
assertion,
file,
line,
func
p_assertion,
p_file,
p_line,
p_func
);
std::abort();
}