added a comment.

This commit is contained in:
Harry Moffat 2003-08-02 00:37:29 +00:00
parent 0ee5420b4b
commit 2675669646

View file

@ -59,6 +59,11 @@ namespace Cantera {
int install( int rxnNumber, int rateType, int m,
const doublereal* c ) {
/*
* Check to see if the current reaction rate type
* is the same as the type of this class. If not,
* throw an error condition.
*/
if (rateType != R::type())
throw UnknownRateCoefficient();