Parcourir la source

Catch exception by reference instead of by value.

adeniz_1
Alban Deniz il y a 1 an
Parent
révision
9100c75356
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      main.cpp

+ 1
- 1
main.cpp Voir le fichier

@@ -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;

Chargement…
Annuler
Enregistrer