소스 검색

Updated for c++11: Replace comparison of stream with NULL with stream.good().


git-svn-id: https://svn.microneil.com/svn/SNFMulti/branches/adeniz_1@67 dc71a809-1921-45c4-985c-09c81d0142d9
adeniz_1
adeniz 8 년 전
부모
커밋
b1760c7145
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      snf_engine.cpp

+ 2
- 2
snf_engine.cpp 파일 보기

@@ -60,8 +60,8 @@ void TokenMatrix::Load(string& FileName) {
void TokenMatrix::Load(const char* FileName) { // Initializes the token matrix by file name.

ifstream MatrixFile(FileName,ios::binary); // Open the file.
if(MatrixFile == NULL || MatrixFile.bad()) // If anything is wrong with the file
throw BadFile("TokenMatrix::Load()(MatrixFile==NULL || MatrixFile.bad())"); // then throw a bad file exception.
if(!MatrixFile.good()) // If anything is wrong with the file
throw BadFile("TokenMatrix::Load()(!MatrixFile.good())"); // then throw a bad file exception.

Load(MatrixFile); // Load the matrix from the file.
MatrixFile.close(); // Be nice and clean up our file.

Loading…
취소
저장