Skip to content

Commit

Permalink
Require that implementors of FftData be sized
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphire-arches committed Feb 25, 2016
1 parent 0116249 commit 209da42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use strided::{MutStrided, Strided, MutStride};
use plan::RawPlan;

/// Values for which `[Self] -> [Target]` works as a transform.
pub trait FftData<Target> {
pub trait FftData<Target> : Sized {
type State;
#[doc(hidden)]
unsafe fn plan(in_: MutStride<Self>, out: Option<MutStride<Target>>,
Expand Down

0 comments on commit 209da42

Please sign in to comment.