Skip to content
Snippets Groups Projects
Commit 88d03cf5 authored by Christian Godenschwager's avatar Christian Godenschwager
Browse files

[BUGFIX] Fixed clang conversion warnings in GhostLayerField

parent 429cd18d
Branches
Tags
No related merge requests found
......@@ -474,7 +474,7 @@ namespace field {
return ForwardFieldIterator<const T,fSize_>( this,
ci.xMin(),ci.yMin(), ci.zMin(), f,
ci.xSize(), ci.ySize(), ci.zSize(), f+1 );
ci.xSize(), ci.ySize(), ci.zSize(), uint_c( f + cell_idx_t(1) ) );
}
//*******************************************************************************************************************
......@@ -489,7 +489,7 @@ namespace field {
return ForwardFieldIterator<T,fSize_>( this,
ci.xMin(),ci.yMin(), ci.zMin(), f,
ci.xSize(), ci.ySize(), ci.zSize(), uint_c(f+1) );
ci.xSize(), ci.ySize(), ci.zSize(), uint_c( f + cell_idx_t(1) ) );
}
......@@ -506,7 +506,7 @@ namespace field {
return ForwardFieldIterator<const T,fSize_>( this,
ci.xMin(),ci.yMin(), ci.zMin(), f,
ci.xSize(), ci.ySize(), ci.zSize(), f+1 );
ci.xSize(), ci.ySize(), ci.zSize(), uint_c( f + cell_idx_t(1) ) );
}
......@@ -555,7 +555,7 @@ namespace field {
return ForwardFieldIterator<T,fSize_>( this,
ci.xMin(),ci.yMin(), ci.zMin(), f,
ci.xSize(), ci.ySize(), ci.zSize(), f+1 );
ci.xSize(), ci.ySize(), ci.zSize(), uint_c( f + cell_idx_t(1) ) );
}
......@@ -572,7 +572,7 @@ namespace field {
return ForwardFieldIterator<const T,fSize_>( this,
ci.xMin(),ci.yMin(), ci.zMin(), f,
ci.xSize(), ci.ySize(), ci.zSize(), uint_c(f+1) );
ci.xSize(), ci.ySize(), ci.zSize(), uint_c( f + cell_idx_t(1) ) );
}
//*******************************************************************************************************************
......
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