Skip to content

Commit

Permalink
Fix warning. Refs #9223.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawrainey committed Apr 2, 2014
1 parent d288de0 commit eff77a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/ICat/src/ICat4/ICat4Catalog.cpp
Expand Up @@ -807,7 +807,7 @@ namespace Mantid

// Remove each investigation returned from `myData`
// were the user does not have create/write access.
for (int row = ws->rowCount() - 1; row >= 0; --row)
for (int row = static_cast<int>(ws->rowCount()) - 1; row >= 0; --row)
{
// The investigation used to check CREATE access against.
ns1__investigation investigation;
Expand Down

0 comments on commit eff77a2

Please sign in to comment.