changed all uint to unsigned int

This commit is contained in:
Raphael Maenle
2017-12-02 17:03:12 +01:00
parent b1b6d55fc6
commit e2d2e403f5
4 changed files with 12 additions and 14 deletions

View File

@ -242,7 +242,7 @@ vector<PuzzlePiece> randomBox::shuffle()
}
//creates a random box size m, n, shuffles it, and then retuns it
vector<PuzzlePiece> createBox(uint m, uint n)
vector<PuzzlePiece> createBox(unsigned int m, unsigned int n)
{
randomBox myFirstPuzzleBox(m,n);
myFirstPuzzleBox.createRandomPuzzle();