The ghidra source code is riddled with using namespace std in various header files. This is bad practice and it would be nice if this could be patched away. It causes all kinds of confusing issues (one notable one being with std::byte and byte from some Windows COM headers).
Ideally these occurrences would be patched out, but obviously the cost is high because you'd have to maintain an extensive patch set...
The ghidra source code is riddled with
using namespace stdin various header files. This is bad practice and it would be nice if this could be patched away. It causes all kinds of confusing issues (one notable one being withstd::byteandbytefrom some Windows COM headers).Ideally these occurrences would be patched out, but obviously the cost is high because you'd have to maintain an extensive patch set...