summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-12 06:26:57 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-12 06:29:52 -0700
commit73caeb4198e8321a6de37934b1120779469cae89 (patch)
treeb84044a47f45ac9306c1cb33df8f0fef35f3cd30 /crawl-ref/source/files.cc
parent48a7ef0bd95493853b8481eccfda76c169d04381 (diff)
downloadcrawl-ref-73caeb4198e8321a6de37934b1120779469cae89.tar.gz
crawl-ref-73caeb4198e8321a6de37934b1120779469cae89.zip
project-wide: fix msvc compile breakage
MSVC is like a chimp with Down's syndrome. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 2e627db619..303ea417d6 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -482,7 +482,7 @@ bool is_read_safe_path(const std::string &path)
{
assert_read_safe_path(path);
}
- catch (const std::string &err)
+ catch (const std::string &)
{
return (false);
}