issues
search
pezmaster31
/
bamtools
C++ API & command-line toolkit for working with BAM data
MIT License
418
stars
153
forks
source link
Remove `using namespace std`
#159
Closed
SoapZA
closed
7 years ago
SoapZA
commented
7 years ago
Prefer fully qualified identifiers to reduce possibility of future clashes.
Also avoid some
std::string
and
std::stringstream
null-string initializations. ISO C++ guarantees that both classes yield empty but valid states at the point of definition.
std::string
andstd::stringstream
null-string initializations. ISO C++ guarantees that both classes yield empty but valid states at the point of definition.