Skip to content
Snippets Groups Projects
Unverified Commit 6fff3d91 authored by Sam Yates's avatar Sam Yates Committed by GitHub
Browse files

Workaround for Juwels link error. (#747)

Fixes #746.

* Make `one_probe` an `inline` function rather than `static inline` in order to work around a linker issue (see issue #746).
parent e84a0e36
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ using cell_member_predicate = std::function<bool (cell_member_type)>;
static cell_member_predicate all_probes = [](cell_member_type pid) { return true; };
static inline cell_member_predicate one_probe(cell_member_type pid) {
inline cell_member_predicate one_probe(cell_member_type pid) {
return [pid](cell_member_type x) { return pid==x; };
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment