Skip to content

Commit 4158e72

Browse files
committed
chore: reformat cpp code
1 parent 2a915f8 commit 4158e72

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

include/Ark/VM/Value/Dict.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @file Dict.hpp
2+
* @file Dict.hpp
33
* @author Lex Plateau ([email protected])
44
* @brief Define how dictionaries are handled
55
* @date 2025-08-03
@@ -89,4 +89,4 @@ namespace Ark::internal
8989
};
9090
}
9191

92-
#endif // ARK_VM_VALUE_DICT_HPP
92+
#endif // ARK_VM_VALUE_DICT_HPP

include/Ark/VM/Value/Procedure.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ namespace Ark
4040
* @brief Create a new procedure.
4141
*/
4242
template <typename T>
43-
Procedure(T&& cb) : // cppcheck-suppress noExplicitConstructor ; we explicitly want implicit conversion to Procedure
43+
// cppcheck-suppress noExplicitConstructor ; we explicitly want implicit conversion to Procedure
44+
Procedure(T&& cb) :
4445
m_procedure(cb)
4546
{}
4647

0 commit comments

Comments
 (0)