@@ -74,11 +74,11 @@ namespace dirSplitting
7474 PMACC_CASSERT_MSG (DirectionSplitting_use_cubic_cells____check_your_gridConfig_param_file,
7575 SI::CELL_HEIGHT_SI == SI::CELL_WIDTH_SI &&
7676 (sizeof (T_Dummy) != 0 ));
77- #if (SIMDIM == DIM3)
77+ #if (SIMDIM == DIM3)
7878 PMACC_CASSERT_MSG (DirectionSplitting_use_cubic_cells____check_your_gridConfig_param_file,
7979 SI::CELL_DEPTH_SI == SI::CELL_WIDTH_SI &&
8080 (sizeof (T_Dummy) != 0));
81- #endif
81+ #endif
8282 };
8383} // namespace dirSplitting
8484
@@ -95,7 +95,7 @@ namespace dirSplitting
9595 auto gridSizeTwisted = twistComponents<OrientationTwist>(gridSize);
9696
9797 /* twist components of the supercell */
98- typedef typename CT::TwistComponents<SuperCellSize, OrientationTwist>::type BlockDim ;
98+ using BlockDim = typename CT::TwistComponents<SuperCellSize, OrientationTwist>::type;
9999
100100 algorithm::kernel::ForeachBlock<BlockDim> foreach;
101101 foreach (zone::SphericZone<3 >(pmacc::math::Size_t<3 >(BlockDim::x::value, gridSizeTwisted.y (), gridSizeTwisted.z ())),
@@ -112,7 +112,7 @@ namespace dirSplitting
112112
113113 void update_beforeCurrent (uint32_t currentStep) const
114114 {
115- typedef SuperCellSize GuardDim;
115+ using GuardDim = SuperCellSize ;
116116
117117 DataConnector &dc = Environment<>::get ().DataConnector ();
118118
@@ -134,7 +134,7 @@ namespace dirSplitting
134134 pmacc::math::Size_t<3 > gridSize = fieldE_coreBorder.size ();
135135
136136
137- typedef pmacc::math::CT::Int<0 ,1 ,2 > Orientation_X ;
137+ using Orientation_X = pmacc::math::CT::Int<0 ,1 ,2 >;
138138 propagate<Orientation_X>(
139139 fieldE_coreBorder.origin (),
140140 fieldB_coreBorder.origin (),
@@ -143,7 +143,7 @@ namespace dirSplitting
143143 __setTransactionEvent (fieldE->asyncCommunication (__getTransactionEvent ()));
144144 __setTransactionEvent (fieldB->asyncCommunication (__getTransactionEvent ()));
145145
146- typedef pmacc::math::CT::Int<1 ,2 ,0 > Orientation_Y ;
146+ using Orientation_Y = pmacc::math::CT::Int<1 ,2 ,0 >;
147147 propagate<Orientation_Y>(
148148 fieldE_coreBorder.origin (),
149149 fieldB_coreBorder.origin (),
@@ -152,7 +152,7 @@ namespace dirSplitting
152152 __setTransactionEvent (fieldE->asyncCommunication (__getTransactionEvent ()));
153153 __setTransactionEvent (fieldB->asyncCommunication (__getTransactionEvent ()));
154154
155- typedef pmacc::math::CT::Int<2 ,0 ,1 > Orientation_Z ;
155+ using Orientation_Z = pmacc::math::CT::Int<2 ,0 ,1 >;
156156 propagate<Orientation_Z>(
157157 fieldE_coreBorder.origin (),
158158 fieldB_coreBorder.origin (),
0 commit comments