Skip to content
Snippets Groups Projects
Commit ae0cafbe authored by Volker Neff's avatar Volker Neff
Browse files

re activate Field3D_t member functions

parent ffe8ed43
No related branches found
No related tags found
1 merge request!6Draft: [WIP] New Field Architekture
......@@ -80,12 +80,12 @@ inline Field3D_t& Field3D_t::operator=( T&& t ) noexcept {
}
inline void Field3D_t::resize(size_t count) {
// field_operation([](LambdaField3D_t_ field, size_t count){field.resize(count);}, *this, count);
field_operation([](LambdaField3D_T_ field, size_t count){field.resize(count);}, *this, count);
}
template<typename U>
inline void Field3D_t::resize(size_t count, const U value) {
// field_operation([](LambdaField3D_t_ field, size_t count, const U value){field.resize(count, value);}, *this, count, value);
field_operation([](LambdaField3D_T_ field, size_t count, const U value){field.resize(count, value);}, *this, count, value);
}
inline void Field3D_t::setMissValue(double value) {
......@@ -99,7 +99,7 @@ inline void Field3D_t::setMissValue(double value) {
}
inline double Field3D_t::getMissValue() const {
// return field_operation([](LambdaField3D_t_ field){return field.getMissValueDouble();}, *this);
return field_operation([](LambdaField3D_T_ field){return field.getMissValueDouble();}, *this);
}
#endif // Field3D_t_INL
\ No newline at end of file
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