Skip to content

Commit

Permalink
[ci] More build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 15, 2023
1 parent c182d95 commit ac3883f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/avnd/binding/dump/DumpCBOR.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <nlohmann/json.hpp>

#include <fstream>
#include <variant>
#include <iostream>
#include <tuple>

Expand Down Expand Up @@ -233,7 +234,7 @@ void print_callback(nlohmann::json& obj)

using function_type = decltype(type::call);
using refl = avnd::function_reflection_t<std::decay_t<function_type>>;
using args = refl::arguments;
using args = typename refl::arguments;

nlohmann::json::array_t arr;
auto add = [&arr]<typename A>(A&& a) { arr.push_back(value_type(a)); };
Expand Down

0 comments on commit ac3883f

Please sign in to comment.