Skip to content
Snippets Groups Projects
Commit 7b83fbfd authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[P|spaces] drop obsolete capture

parent e97154ed
No related branches found
No related tags found
No related merge requests found
......@@ -72,10 +72,10 @@ public:
if (r == 1)
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid,
const int order,
const XT::Grid::bindings::Dimension<r>&,
const std::string& logging_prefix) { return new type(grid.leaf_view(), order, logging_prefix); },
[](XT::Grid::GridProvider<G>& grid,
const int order,
const XT::Grid::bindings::Dimension<r>&,
const std::string& logging_prefix) { return new type(grid.leaf_view(), order, logging_prefix); },
"grid"_a,
"order"_a,
"dim_range"_a = XT::Grid::bindings::Dimension<r>(),
......@@ -83,10 +83,10 @@ public:
else
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid,
const int order,
const XT::Grid::bindings::Dimension<r>&,
const std::string& logging_prefix) { return new type(grid.leaf_view(), order, logging_prefix); },
[](XT::Grid::GridProvider<G>& grid,
const int order,
const XT::Grid::bindings::Dimension<r>&,
const std::string& logging_prefix) { return new type(grid.leaf_view(), order, logging_prefix); },
"grid"_a,
"order"_a,
"dim_range"_a,
......
......@@ -71,7 +71,7 @@ public:
if (r == 1)
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid, const int order, const XT::Grid::bindings::Dimension<r>&) {
[](XT::Grid::GridProvider<G>& grid, const int order, const XT::Grid::bindings::Dimension<r>&) {
return type(grid.leaf_view(), order); // Otherwise we get an error here!
},
"grid"_a,
......@@ -80,7 +80,7 @@ public:
else
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid, const int order, const XT::Grid::bindings::Dimension<r>&) {
[](XT::Grid::GridProvider<G>& grid, const int order, const XT::Grid::bindings::Dimension<r>&) {
return type(grid.leaf_view(), order); // Otherwise we get an error here!
},
"grid"_a,
......
......@@ -69,7 +69,7 @@ public:
if (r == 1)
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid, const XT::Grid::bindings::Dimension<r>&) {
[](XT::Grid::GridProvider<G>& grid, const XT::Grid::bindings::Dimension<r>&) {
return type(grid.leaf_view()); // Otherwise we get an error here!
},
"grid"_a,
......@@ -77,7 +77,7 @@ public:
else
m.def(
XT::Common::to_camel_case(space_type_name).c_str(),
[c](XT::Grid::GridProvider<G>& grid, const XT::Grid::bindings::Dimension<r>&) {
[](XT::Grid::GridProvider<G>& grid, const XT::Grid::bindings::Dimension<r>&) {
return type(grid.leaf_view()); // Otherwise we get an error here!
},
"grid"_a,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment