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

Fix error introduced by PR merge. (#1162)

parent af4d773b
No related branches found
No related tags found
No related merge requests found
#include "../gtest.h"
#include <any>
#include <vector>
#include <arbor/common_types.hpp>
#include <arbor/domain_decomposition.hpp>
#include <arbor/load_balance.hpp>
......@@ -52,7 +55,7 @@ namespace {
cell_size_type num_targets(cell_gid_type gid) const override {
return num_targets_[gid];
}
arb::util::any get_global_properties(cell_kind) const override {
std::any get_global_properties(cell_kind) const override {
arb::cable_cell_global_properties a;
a.default_parameters = arb::neuron_parameter_defaults;
return a;
......@@ -290,4 +293,4 @@ TEST(recipe, connections)
EXPECT_THROW(simulation(recipe_4, decomp_4, context), arb::bad_connection_target_lid);
}
}
\ No newline at end of file
}
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