Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Nov 8, 2023
1 parent 05cd16b commit 16c6ca5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion morpheus/_lib/include/morpheus/llm/llm_lambda_node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ auto make_lambda_node(std::function<ReturnT(ArgsT...)>&& fn)

using return_t = typename utilities::extract_value_type<typename function_t::result_type>::type;

auto make_args = []<std::size_t... Is>(std::index_sequence<Is...>) {
auto make_args = []<std::size_t... Is>(std::index_sequence<Is...>)
{
return std::vector<std::string>{std::string{"arg"} + std::to_string(Is)...};
};

Expand Down

0 comments on commit 16c6ca5

Please sign in to comment.