File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments