For a local pointer declaration of the form T * p = 0 or T * p.= std::nullptr, we generate fix-its that convert the declaration to std::span<T> p {nullptr, <# placeholder #>}, in cases where p is used in some unsafe operations.
This patch improves the fix-its to result in a simpler form std::span<T> p. It gets rid of the placeholder and keeps the result concise.