summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-08-22 11:12:44 +0200
committerMattes D <github@xoft.cz>2014-08-22 11:12:44 +0200
commit33b595253209cefcf2bda42ab227b84fad6c600f (patch)
treed3a3405053856b2ce0969716c5189f2fb6365243
parentWorld: Report chunk count for the spawn area. (diff)
downloadcuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.gz
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.bz2
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.lz
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.xz
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.tar.zst
cuberite-33b595253209cefcf2bda42ab227b84fad6c600f.zip
-rw-r--r--src/FastRandom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FastRandom.h b/src/FastRandom.h
index 2061a3958..cebebad96 100644
--- a/src/FastRandom.h
+++ b/src/FastRandom.h
@@ -45,7 +45,7 @@ public:
float NextFloat(float a_Range, int a_Salt);
/** Returns a random float between 0 and 1. */
- float NextFloat(void) { return NextFloat(1); };
+ float NextFloat(void) { return NextFloat(1); }
/** Returns a random int in the range [a_Begin .. a_End] */
int GenerateRandomInteger(int a_Begin, int a_End);