| 1183 | // |
| 1184 | #ifdef USE_MMAP |
| 1185 | IfcFile::IfcFile(const std::string& fn, bool mmap) { |
| 1186 | initialize(fn, mmap); |
| 1187 | } |
| 1188 | |
| 1189 | bool IfcParse::IfcFile::initialize(const std::string& fn, bool mmap) { |
| 1190 | std::unique_ptr<FileReader> s; |
nothing calls this directly
no test coverage detected