summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/los.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-12 23:07:50 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-13 00:35:02 -0700
commitfab44a2728efc2e5134a7b3a844b3d288ca4cab7 (patch)
tree4d24f8bde4d743b1b8740d8bbe83ae679d3b1555 /crawl-ref/source/los.cc
parentb451832031b286be24b25118c615cc1a02fc2c03 (diff)
downloadcrawl-ref-fab44a2728efc2e5134a7b3a844b3d288ca4cab7.tar.gz
crawl-ref-fab44a2728efc2e5134a7b3a844b3d288ca4cab7.zip
los: provide explicit access specifiers for inherited structs
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/los.cc')
-rw-r--r--crawl-ref/source/los.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/los.cc b/crawl-ref/source/los.cc
index 64f04818dc..2b00e30b20 100644
--- a/crawl-ref/source/los.cc
+++ b/crawl-ref/source/los.cc
@@ -91,7 +91,7 @@ bool double_is_zero(const double x)
return (x > -EPSILON_VALUE) && (x < EPSILON_VALUE);
}
-struct los_ray : ray_def
+struct los_ray : public ray_def
{
unsigned int start;
unsigned int length;