Skip to content

Commit

Permalink
Merge pull request #1 from heplesser/5g
Browse files Browse the repository at this point in the history
Replaced uint by unsigned int.
  • Loading branch information
jakobj authored Mar 7, 2018
2 parents 3b851ef + f235511 commit 4ef112c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nestkernel/sp_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -830,12 +830,12 @@ nest::SPManager::global_shuffle( std::vector< index >& v, size_t n )
std::sort( v.begin(), v.end() ); // TODO@5g: remove

// shuffle res using the global random number generator
uint N = v.size();
unsigned int N = v.size();
std::vector< index > v2;
index tmp;
uint rnd;
unsigned int rnd;
std::vector< index >::iterator rndi;
for ( uint i = 0; i < n; i++ )
for ( unsigned int i = 0; i < n; i++ )
{
N = v.size();
rnd = kernel().rng_manager.get_grng()->ulrand( N );
Expand Down

0 comments on commit 4ef112c

Please sign in to comment.