summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-10-26 14:53:11 +0200
committerRobin Gareus <robin@gareus.org>2018-10-26 14:53:53 +0200
commit5c08a6a85d1a23ee9b00db5a089c0077746a7c8a (patch)
tree7ec67af8d6841cc392cec8f7e1246e8b34ad32bb /tools
parent4f86da854475e1ef6081ad5ebec166f734a6f570 (diff)
Wimplicit-fallthrough fixes for tools/utils
Diffstat (limited to 'tools')
-rw-r--r--tools/luadevel/devel.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/luadevel/devel.cc b/tools/luadevel/devel.cc
index 9bbe313810..7d0deecbcf 100644
--- a/tools/luadevel/devel.cc
+++ b/tools/luadevel/devel.cc
@@ -154,7 +154,8 @@ class LuaTableRef {
}
// invalid userdata -- fall through
}
- // no break
+
+ /* fall through */
case LUA_TFUNCTION: // no support -- we could... string.format("%q", string.dump(value, true))
case LUA_TTABLE: // no nested tables, sorry.
case LUA_TNIL: // fallthrough