remove dead code

This commit is contained in:
Axel Kohlmeyer
2021-02-04 15:34:56 -05:00
parent 4e791ac4f7
commit f5bf10e00f

View File

@ -235,7 +235,6 @@ namespace LAMMPS_NS {
inline bool has_utf8(const std::string &line)
{
const unsigned char * const in = (const unsigned char *)line.c_str();
for (auto c : line) if (c & 0x80U) return true;
return false;
}