diff --git a/paddle/inference/io.cc b/paddle/inference/io.cc index 8f83aaea8631c..784e87970f778 100644 --- a/paddle/inference/io.cc +++ b/paddle/inference/io.cc @@ -21,8 +21,7 @@ limitations under the License. */ namespace paddle { namespace inference { -void ReadBinaryFile(const std::string& filename, - std::string& contents) { +void ReadBinaryFile(const std::string& filename, std::string& contents) { VLOG(3) << "loading model from " << filename; std::ifstream inputfs(filename, std::ios::in | std::ios::binary); inputfs.seekg(0, std::ios::end);