Skip to content

Commit

Permalink
Fix CRTP of ToMagPhase
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Kretz <[email protected]>
  • Loading branch information
mattkretz committed Sep 27, 2024
1 parent 7ec107b commit 91c311d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ struct RealImagToComplex : public gr::Block<RealImagToComplex<T>> {

template<typename T>
requires std::is_arithmetic_v<T> || meta::complex_like<T>
struct ToMagPhase : public gr::Block<ToRealImag<T>> {
struct ToMagPhase : public gr::Block<ToMagPhase<T>> {
using R = meta::fundamental_base_value_type_t<T>;
using Description = Doc<"(@brief decompose complex (or arithmetic) numbers their magnitude (abs) and phase (arg, [rad]) component">;
PortIn<T> in;
Expand Down

0 comments on commit 91c311d

Please sign in to comment.