Added static_cast to remove VC++ compiler warning.
This commit is contained in:
parent
ffc6b4c48b
commit
961dc9a972
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ namespace Cantera {
|
|||
ostream& output() { return m_s; }
|
||||
|
||||
inline string XML_filter(string name) {
|
||||
int ns = name.size();
|
||||
int ns = static_cast<int>(name.size());
|
||||
string nm(name);
|
||||
for (int m = 0; m < ns; m++)
|
||||
if (name[m] == ' '
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue