Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Support/APFloat.cpp | ||
---|---|---|
1685 ↗ | (On Diff #77017) | Why not use std::unique_ptr? |
Comment Actions
Thanks for working on this! Just one drive-by nit.
lib/Support/APFloat.cpp | ||
---|---|---|
1685 ↗ | (On Diff #77017) | Piggybacking off of this, it looks like x is always deleted, so would it be correct/beneficial to use a SmallVector<integerPart, N> instead of an array that we always heap-allocate? |