Skip to content

Commit

Permalink
Fixed ms warnings. Refs #11098.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Mar 6, 2015
1 parent 80138c1 commit fbdf5bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadSpiceXML2DDet.cpp
Expand Up @@ -260,8 +260,8 @@ void LoadSpiceXML2DDet::parseSpiceXML(const std::string &xmlfilename,
<< "\n";
if (nodename.compare("SPICErack") == 0) {
// SPICErack is the main parent node. start_time and end_time are there
size_t numattr = pNode->attributes()->length();
for (size_t j = 0; j < numattr; ++j) {
unsigned long numattr = pNode->attributes()->length();
for (unsigned long j = 0; j < numattr; ++j) {
std::string attname = pNode->attributes()->item(j)->nodeName();
std::string attvalue = pNode->attributes()->item(j)->innerText();
SpiceXMLNode xmlnode(attname);
Expand Down

0 comments on commit fbdf5bb

Please sign in to comment.