Skip to content

Commit 27db396

Browse files
committed
minor change to indentation of comments
1 parent 48b293d commit 27db396

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/boot.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ void mexFunction (int nlhs, mxArray* plhs[],
150150
mwSize dims[2] = {static_cast<mwSize>(n), static_cast<mwSize>(nboot)};
151151
plhs[0] = mxCreateNumericArray (2, dims,
152152
mxDOUBLE_CLASS,
153-
mxREAL); // Prepare array for sample indices
154-
size_t N = n * nboot; // Total counts of all sample indices
155-
size_t k; // Variable to store random number
156-
long long int d; // Counter for cumulative sum calculation
157-
vector<long long int> c(n, nboot); // Counter for each of the sample indices
153+
mxREAL); // Prepare array for sample indices
154+
size_t N = n * nboot; // Total counts of all sample indices
155+
size_t k; // Variable to store random number
156+
long long int d; // Counter for cumulative sum calculation
157+
vector<long long int> c(n, nboot); // Counter for each of the sample indices
158158
if ( nrhs > 4 && !mxIsEmpty (prhs[4]) ) {
159159
// Assign user defined weights (counts)
160160
if ( !mxIsClass (prhs[4], "double") ) {

0 commit comments

Comments
 (0)