Skip to content

Commit

Permalink
address modernize-use-using issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Oct 24, 2024
1 parent 047037d commit 822a8a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,8 @@ namespace picsar::multi_physics::phys::breit_wheeler
*
* @tparam RealType the floating point type to be used
*/
typedef pair_prod_lookup_table<
RealType, containers::picsar_span<const RealType>> view_type;
using view_type =
pair_prod_lookup_table<RealType, containers::picsar_span<const RealType>>;

/**
* Empty constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,8 @@ namespace picsar::multi_physics::phys::quantum_sync
*
* @tparam RealType the floating point type to be used
*/
typedef photon_emission_lookup_table<
RealType, containers::picsar_span<const RealType>> view_type;
using view_type =
photon_emission_lookup_table<RealType, containers::picsar_span<const RealType>>;

/**
* Empty constructor
Expand Down Expand Up @@ -910,8 +910,8 @@ namespace picsar::multi_physics::phys::quantum_sync
*
* @tparam RealType the floating point type to be used
*/
typedef tailopt_photon_emission_lookup_table<
RealType, containers::picsar_span<const RealType>> view_type;
using view_type =
tailopt_photon_emission_lookup_table<RealType, containers::picsar_span<const RealType>>;

/**
* Empty constructor
Expand Down

0 comments on commit 822a8a0

Please sign in to comment.