Clean up comments in unsupported module

libeigen/eigen!2198

Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
This commit is contained in:
Rasmus Munk Larsen
2026-02-22 22:04:23 -08:00
parent 78b76986b7
commit 667cabe3aa
61 changed files with 122 additions and 353 deletions

View File

@@ -171,10 +171,7 @@ class MatrixMarketIterator {
std::string curfile;
curfile = m_folder + "/" + m_curs_id->d_name;
// Discard if it is a folder
if (m_curs_id->d_type == DT_DIR) continue; // FIXME This may not be available on non BSD systems
// struct stat st_buf;
// stat (curfile.c_str(), &st_buf);
// if (S_ISDIR(st_buf.st_mode)) continue;
if (m_curs_id->d_type == DT_DIR) continue; // FIXME: This may not be available on non-BSD systems.
// Determine from the header if it is a matrix or a right hand side
bool isvector, iscomplex = false;