Skip to content
Snippets Groups Projects
Commit 7f650ca3 authored by Ezekiel Dohmen's avatar Ezekiel Dohmen
Browse files

Adding void return type

parent 92bc8e0d
No related branches found
No related tags found
1 merge request!439RCG 5.0 release fro deb 10
......@@ -52,7 +52,7 @@ inline unsigned long noise_int64( void ) {
return (noise_x + noise_v) ^ noise_w;
}
inline double noise_doub( void ) { return 5.42101086242752217E-20 * noise_int64(); }
inline noise_set_seed(unsigned long seed) {
inline void noise_set_seed(unsigned long seed) {
noise_v = 4101842887655102017LL;
noise_w = 1;
noise_u = seed ^ noise_v; noise_int64();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment