Fix some Wimplicit-fallthrough
[ardour.git] / libs / ardour / lua_api.cc
index 7332f62fc96fffb7377557875d5e0afe7e57210c..d4e2bb23b45a88f2cc7242231fedb757a039d160 100644 (file)
@@ -681,10 +681,11 @@ LuaTableRef::set (lua_State* L)
                                        }
                                        // invalid userdata -- fall through
                                }
-                               // no break
+                               /* fall through */
                        case LUA_TFUNCTION: // no support -- we could... string.format("%q", string.dump(value, true))
+                               /* fall through */
                        case LUA_TTABLE: // no nested tables, sorry.
-                       case LUA_TNIL: // fallthrough
+                       case LUA_TNIL:
                        default:
                                // invalid value
                                lua_pop (L, 2);