static cast added to avoid VC++ compiler warning.
This commit is contained in:
parent
db9f2b1b87
commit
f2c6297f24
1 changed files with 1 additions and 1 deletions
|
|
@ -526,7 +526,7 @@ namespace Cantera {
|
|||
XML_Node* doc = get_XML_File(element_database);
|
||||
XML_Node* dbe = &doc->child("ctml/elementData");
|
||||
|
||||
int nel = enames.size();
|
||||
int nel = static_cast<int>(enames.size());
|
||||
int i;
|
||||
string enm;
|
||||
for (i = 0; i < nel; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue