summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2017-03-29 12:13:53 +0100
committer smf- <smf-@users.noreply.github.com>2017-03-29 12:13:53 +0100
commit79f22e060b2c012d628d5d1d83288c1bb6e6acef (patch)
tree006fe0ae7b7284af7e03f9d09f1ad19b8fc73805 /src/emu
parent0a7765b310b72d4c1c90ec2813edeaef82a42c5c (diff)
fix building with MSVC (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/debug/express.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/express.cpp b/src/emu/debug/express.cpp
index 21fd978591e..9661d80a35a 100644
--- a/src/emu/debug/express.cpp
+++ b/src/emu/debug/express.cpp
@@ -881,7 +881,7 @@ void parsed_expression::parse_symbol_or_number(parse_token &token, const char *&
parse_memory_operator(token, buffer.c_str(), disable_se);
string += 1;
return;
- } catch(const expression_error &e) {
+ } catch(const expression_error &) {
// Try some other operator instead
}
}