Skip to content
Snippets Groups Projects

[dune_list_filter()] Fix copy-n-paste error.

Merged Jö Fahlke requested to merge fix/dune_list_filter_copynpaste into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -83,9 +83,9 @@ function(dune_list_filter list mode REGEX regular_expression)
endforeach(item)
if("${mode}" STREQUAL "INCLUDE")
set(result "${matched}" PARENT_SCOPE)
set(result "${matched}")
else()
set(result "${unmatched}" PARENT_SCOPE)
set(result "${unmatched}")
endif()
# remove the non-empty token from above. If the proper result would be a
Loading