refactor(opatIO-and-meshIO): removed unused header file includes

This commit is contained in:
2025-03-20 14:30:40 -04:00
parent cb5ac274dc
commit ecbdba5216
4 changed files with 3 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ T swap_bytes(T value) {
// Constructor
OpatIO::OpatIO() {}
OpatIO::OpatIO(std::string filename) : filename(filename) {
OpatIO::OpatIO(const std::string filename) : filename(filename) {
load();
}

View File

@@ -21,7 +21,6 @@
#ifndef OPATIO_H
#define OPATIO_H
#include <iostream>
#include <fstream>
#include <string>
#include <vector>