summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/perlin.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-03-24 22:57:39 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-03-26 01:32:29 +0100
commite2370fcd0ff935ac39464d3e9049bcf9f7370608 (patch)
tree946fb64582f6b5b340aacb2f4a82157958b23e95 /crawl-ref/source/perlin.h
parentc766a87ad9dfc6e4bfdf6db8c73c62e286f07a99 (diff)
downloadcrawl-ref-e2370fcd0ff935ac39464d3e9049bcf9f7370608.tar.gz
crawl-ref-e2370fcd0ff935ac39464d3e9049bcf9f7370608.zip
Rename the bikeshed IMMUTABLE.
Because sql.
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 18a6b1af2a..cbfec7691c 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) 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;
+ double noise(double xin, double yin) IMMUTABLE;
+ double noise(double xin, double yin, double zin) IMMUTABLE; // Praise Zin!
+ double noise(double xin, double yin, double zin, double win) IMMUTABLE;
+ double fBM(double xin, double yin, double zin, uint32_t octaves) IMMUTABLE;
}
#endif /* PERLIN_H */