Here's since when this occurred:
old commit (no issue): 1f8adbafcf19e473b6548148c4b66293cad28089
new commit (new issue): e3e0b380e2c895d8b0466d76f87e6c5a11bb027b
Could you please check?
Thanks,
Martin
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
as far as I see it's technically a true positive. it indicates f.get(). It's the printout that does not print the whole expression just the "(".
Actually, its a false positive because unique_ptr is guaranteed to be null after move. We should change after move analysis to set the value to null rather than a movedValue.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
there seems to be a parsing error on the current head for the following code:
Result:
Here's since when this occurred:
old commit (no issue): 1f8adbafcf19e473b6548148c4b66293cad28089
new commit (new issue): e3e0b380e2c895d8b0466d76f87e6c5a11bb027b
Could you please check?
Thanks,
Martin
as far as I see it's technically a true positive. it indicates
f.get()
. It's the printout that does not print the whole expression just the "(".Actually, its a false positive because
unique_ptr
is guaranteed to be null after move. We should change after move analysis to set the value to null rather than a movedValue.