aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm/PcmPrng.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcm/PcmPrng.hxx')
-rw-r--r--src/pcm/PcmPrng.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm/PcmPrng.hxx b/src/pcm/PcmPrng.hxx
index 0c823250d..9b6ed7c9e 100644
--- a/src/pcm/PcmPrng.hxx
+++ b/src/pcm/PcmPrng.hxx
@@ -24,7 +24,7 @@
* A very simple linear congruential PRNG. It's good enough for PCM
* dithering.
*/
-static unsigned long
+constexpr static unsigned long
pcm_prng(unsigned long state)
{
return (state * 0x0019660dL + 0x3c6ef35fL) & 0xffffffffL;