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 1
1
/* *
2
- * @file Dict.hpp
2
+ * @file Dict.hpp
3
3
* @author Lex Plateau ([email protected] )
4
4
* @brief Define how dictionaries are handled
5
5
* @date 2025-08-03
@@ -89,4 +89,4 @@ namespace Ark::internal
89
89
};
90
90
}
91
91
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
40
40
* @brief Create a new procedure.
41
41
*/
42
42
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) :
44
45
m_procedure (cb)
45
46
{}
46
47
You can’t perform that action at this time.
0 commit comments