IAP GITLAB

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

cleanup

parent 0958f991
No related branches found
No related tags found
No related merge requests found
......@@ -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