Fixed a few typos

This commit is contained in:
Benoit Steiner
2016-04-19 15:27:09 -07:00
parent 5b1106c56b
commit 04f954956d
2 changed files with 5 additions and 5 deletions

View File

@@ -18,12 +18,12 @@
// implementation of rand() is already thread safe
int rand_reentrant(unsigned int* s) {
#ifdef EIGEN_COMP_MSVC_STRICT
EIGEN_UNUSED_VARIABLE(s);
return rand();
#else
return rand_r(s);
endif
}
#endif
}
void test_basic_runqueue()
{