summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/perlin.h
diff options
context:
space:
mode:
authorSamuel Bronson <naesten@gmail.com>2013-03-24 16:30:31 -0400
committerSamuel Bronson <naesten@gmail.com>2013-03-24 16:30:31 -0400
commit9826b8029a10c3c3d1cb9e2299811d8720510f26 (patch)
tree00ba9151944569787cf4475b55fdc387b0a0172b /crawl-ref/source/perlin.h
parentfe444ccd2c5713bbae4402149d67ae468dfd33dc (diff)
downloadcrawl-ref-9826b8029a10c3c3d1cb9e2299811d8720510f26.tar.gz
crawl-ref-9826b8029a10c3c3d1cb9e2299811d8720510f26.zip
More PURE, and introduce REALLYPURE as well.
Diffstat (limited to 'crawl-ref/source/perlin.h')
-rw-r--r--crawl-ref/source/perlin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/perlin.h b/crawl-ref/source/perlin.h
index dc7bb68c73..18a6b1af2a 100644
--- a/crawl-ref/source/perlin.h
+++ b/crawl-ref/source/perlin.h
@@ -3,9 +3,9 @@
namespace perlin
{
- double noise(double xin, double yin);
- double noise(double xin, double yin, double zin); // Praise be to Zin!
- double noise(double xin, double yin, double zin, double win);
- double fBM(double xin, double yin, double zin, uint32_t octaves);
+ double noise(double xin, double yin) REALLYPURE;
+ double noise(double xin, double yin, double zin) REALLYPURE; // Praise Zin!
+ double noise(double xin, double yin, double zin, double win) REALLYPURE;
+ double fBM(double xin, double yin, double zin, uint32_t octaves) REALLYPURE;
}
#endif /* PERLIN_H */