From 12a7f447fc718f63ddffc6236637f4fe5a44fc0a Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Wed, 21 Dec 2011 22:47:50 +0000 Subject: [PATCH] Added a missing #endif --- Cantera/src/transport/Tortuosity.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cantera/src/transport/Tortuosity.h b/Cantera/src/transport/Tortuosity.h index d3b1d4744..2fa72717c 100644 --- a/Cantera/src/transport/Tortuosity.h +++ b/Cantera/src/transport/Tortuosity.h @@ -1,4 +1,3 @@ - /** * @file TortuosityBruggeman.h * Class to compute the increase in diffusive path length in porous media @@ -15,8 +14,8 @@ * $Revision: 572 $ * $Date: 2010-08-13 20:21:57 -0600 (Fri, 13 Aug 2010) $ */ -#ifndef CT_TORTUOSITYBRUGGEMAN_H -#define CT_TORTUOSITYBRUGGEMAN_H +#ifndef CT_TORTUOSITY_H +#define CT_TORTUOSITY_H namespace Cantera { @@ -44,11 +43,11 @@ namespace Cantera { * * The tortuosity comes into play in conjunction the the */ - class TortuosityBruggeman { + class Tortuosity { public: //! Default constructor uses Bruggemann exponent of 1.5 - TortuosityBruggeman(double setPower = 1.5 ) : expBrug_(setPower) { + Tortuosity(double setPower = 1.5 ) : expBrug_(setPower) { } //! The tortuosity factor models the effective increase in the @@ -190,3 +189,4 @@ namespace Cantera { }; } +#endif