Skip to content

Commit 8efee18

Browse files
committed
fix(argument_utils): silence unused parameter warning in base case of args_to_array
1 parent 8efd203 commit 8efee18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/logit_cpp/logit/utils/argument_utils.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace logit {
1313
/// \brief Base case of recursion for argument conversion — when there are no more arguments.
1414
/// \param name_iter Iterator for the argument name list.
1515
/// \return An empty vector, as there are no more arguments to process.
16-
inline std::vector<VariableValue> args_to_array(std::vector<std::string>::const_iterator name_iter) {
16+
inline std::vector<VariableValue> args_to_array(std::vector<std::string>::const_iterator /*name_iter*/) {
1717
return {};
1818
}
1919

0 commit comments

Comments
 (0)