Skip to content
Snippets Groups Projects
Commit a1c214f7 authored by Axel Naumann's avatar Axel Naumann
Browse files

Add comment instead of weird no-op-if (Coverity 61329.

parent abaed342
No related branches found
No related tags found
No related merge requests found
......@@ -183,13 +183,9 @@ TString::TString(TString &&s)
{
// Move constructor.
if (!s.IsLong()) {
fRep.fRaw = s.fRep.fRaw;
s.Init(0,0);
} else {
fRep.fRaw = s.fRep.fRaw;
s.Init(0,0);
}
// Short or long, all data is in fRaw.
fRep.fRaw = s.fRep.fRaw;
s.Init(0,0);
}
//______________________________________________________________________________
......
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