Skip to content

Commit

Permalink
fix(build): remove more occurrences of the OUT macro
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Ezequiel Moltrasio <[email protected]>
  • Loading branch information
Molter73 committed May 8, 2024
1 parent 3b61446 commit 16a9ded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions userspace/libsinsp/test/filterchecks/mock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class sinsp_filter_check_mock : public sinsp_filter_check
}

protected:
bool extract(sinsp_evt* evt, OUT std::vector<extract_value_t>& values, bool sanitize_strings) override
bool extract(sinsp_evt* evt, std::vector<extract_value_t>& values, bool sanitize_strings) override
{
static const char* list_value_1 = "value1";
static const char* list_value_2 = "charbuf";
Expand All @@ -99,7 +99,7 @@ class sinsp_filter_check_mock : public sinsp_filter_check
return sinsp_filter_check::extract(evt, values, sanitize_strings);
}

uint8_t* extract_single(sinsp_evt*, OUT uint32_t* len, bool sanitize_strings = true) override
uint8_t* extract_single(sinsp_evt*, uint32_t* len, bool sanitize_strings = true) override
{
*len = 0;
switch(m_field_id)
Expand Down

0 comments on commit 16a9ded

Please sign in to comment.