ソースを参照

Catch exception by reference instead of by value.

adeniz_1
Alban Deniz 11ヶ月前
コミット
9100c75356
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      main.cpp

+ 1
- 1
main.cpp ファイルの表示

@@ -89,7 +89,7 @@ int main( int argc, char* argv[] ) {
RuleBase.Load(RuleFileString);
}

catch(TokenMatrix::BadAllocation) { // If we can't allocate memory report it.
catch(TokenMatrix::BadAllocation &) { // If we can't allocate memory report it.

cerr << "snf2check: " << License << " ERROR_RULE_DATA!" << endl;
return ERROR_RULE_DATA;

読み込み中…
キャンセル
保存