| 22 | namespace singa { |
| 23 | namespace io { |
| 24 | bool BinFileReader::Open(const std::string& path) { |
| 25 | path_ = path; |
| 26 | return OpenFile(); |
| 27 | } |
| 28 | |
| 29 | bool BinFileReader::Open(const std::string& path, int capacity) { |
| 30 | path_ = path; |
nothing calls this directly
no outgoing calls
no test coverage detected