IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 04db784b authored by ralfulrich's avatar ralfulrich
Browse files

cleanup

parent a43841dc
No related branches found
No related tags found
1 merge request!6848 particle creator
......@@ -63,10 +63,6 @@ namespace corsika::process {
T1 A; // this is a reference, if possible
T2 B; // this is a reference, if possible
// ProcessSequence(ProcessSequence<T1,T2>&& v) : A(v.A), B(v.B) {}
// ProcessSequence<T1,T2>& operator=(ProcessSequence<T1,T2>&& v) { A=v.A; B=v.B;
// return *this; }
ProcessSequence(T1 in_A, T2 in_B)
: A(in_A)
, B(in_B) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment