diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-09-08 15:56:07 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-09-08 15:56:07 -0230 |
commit | 3f6247914f665a141bec4a5091b1935a22ac94ef (patch) | |
tree | f61a2f346d3af469356ed505cb5556e1d75514df /cpp/include/IceUtil/Random.h | |
parent | Bug 4246 - tolower/toupper on modify ascii (diff) | |
download | ice-3f6247914f665a141bec4a5091b1935a22ac94ef.tar.bz2 ice-3f6247914f665a141bec4a5091b1935a22ac94ef.tar.xz ice-3f6247914f665a141bec4a5091b1935a22ac94ef.zip |
Bug 3459 - use rand_s on windows for random number generation
Diffstat (limited to 'cpp/include/IceUtil/Random.h')
-rw-r--r-- | cpp/include/IceUtil/Random.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Random.h b/cpp/include/IceUtil/Random.h index f2057ddcf75..7ee965c50ce 100644 --- a/cpp/include/IceUtil/Random.h +++ b/cpp/include/IceUtil/Random.h @@ -17,7 +17,7 @@ namespace IceUtilInternal { ICE_UTIL_API void generateRandom(char*, int); -ICE_UTIL_API int random(int = 0); +ICE_UTIL_API unsigned int random(int = 0); } |