Skip to content

Commit

Permalink
Fixed a compiler warning. Refs #8685.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Apr 7, 2014
1 parent 156debd commit f1b865f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/DataObjects/test/EventListTest.h
Expand Up @@ -1462,7 +1462,7 @@ class EventListTest : public CxxTest::TestSuite

// Output will be 10 event lists
std::map<int, EventList * > outputs;
for (size_t i = 0; i < 10; i++)
for (int i = 0; i < 10; i++)
outputs.insert(std::make_pair(i, new EventList()));
outputs.insert(std::make_pair(-1, new EventList()));

Expand Down

0 comments on commit f1b865f

Please sign in to comment.