Skip to content

Commit 772a676

Browse files
committed
fix
1 parent 7c73222 commit 772a676

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

include/ddc/kernels/splines/spline_evaluator.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class SplineEvaluator
8686
ddc::Coordinate<tag_type>,
8787
ddc::ChunkSpan<
8888
double const,
89-
spline_domain_type,
89+
bsplines_domain_type,
9090
std::experimental::layout_right,
9191
memory_space>>,
9292
"LeftExtrapolationRule::operator() has to be callable with usual arguments.");
@@ -97,7 +97,7 @@ class SplineEvaluator
9797
ddc::Coordinate<tag_type>,
9898
ddc::ChunkSpan<
9999
double const,
100-
spline_domain_type,
100+
bsplines_domain_type,
101101
std::experimental::layout_right,
102102
memory_space>>,
103103
"RightExtrapolationRule::operator() has to be callable with usual arguments.");

include/ddc/kernels/splines/spline_evaluator_2d.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class SplineEvaluator2D
109109
ddc::Coordinate<tag_type1>,
110110
ddc::ChunkSpan<
111111
double const,
112-
spline_domain_type,
112+
bsplines_domain_type,
113113
std::experimental::layout_right,
114114
memory_space>>,
115115
"LeftExtrapolationRule1::operator() has to be callable "
@@ -121,7 +121,7 @@ class SplineEvaluator2D
121121
ddc::Coordinate<tag_type1>,
122122
ddc::ChunkSpan<
123123
double const,
124-
spline_domain_type,
124+
bsplines_domain_type,
125125
std::experimental::layout_right,
126126
memory_space>>,
127127
"RightExtrapolationRule1::operator() has to be callable "
@@ -133,7 +133,7 @@ class SplineEvaluator2D
133133
ddc::Coordinate<tag_type2>,
134134
ddc::ChunkSpan<
135135
double const,
136-
spline_domain_type,
136+
bsplines_domain_type,
137137
std::experimental::layout_right,
138138
memory_space>>,
139139
"LeftExtrapolationRule2::operator() has to be callable "
@@ -145,7 +145,7 @@ class SplineEvaluator2D
145145
ddc::Coordinate<tag_type2>,
146146
ddc::ChunkSpan<
147147
double const,
148-
spline_domain_type,
148+
bsplines_domain_type,
149149
std::experimental::layout_right,
150150
memory_space>>,
151151
"RightExtrapolationRule2::operator() has to be callable "

0 commit comments

Comments
 (0)