Skip to content

Commit

Permalink
Re #5056. VC dosn't think that size_t is unsigned long
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Apr 5, 2012
1 parent a764ecc commit cc6bd8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace DataObjects

size_t getNumberSplitters();

bool removeSplitter(unsigned long);
bool removeSplitter(size_t);

};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace DataObjects
}


bool SplittersWorkspace::removeSplitter(unsigned long index)
bool SplittersWorkspace::removeSplitter(size_t index)
{
bool removed;
if (index >= this->rowCount())
Expand Down

0 comments on commit cc6bd8d

Please sign in to comment.