Skip to content

Commit

Permalink
Fix -Wimplicit-fallthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Aug 12, 2019
1 parent b2a387a commit 1217e4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion storage/innobase/include/data0type.ic
@@ -1,7 +1,7 @@
/*****************************************************************************

Copyright (c) 1996, 2012, Oracle and/or its affiliates. All Rights Reserved.
Copyright (c) 2018, MariaDB Corporation.
Copyright (c) 2018, 2019, MariaDB Corporation.

This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Expand Down Expand Up @@ -427,6 +427,7 @@ dtype_get_fixed_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
/* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT:
Expand Down Expand Up @@ -503,6 +504,7 @@ dtype_get_min_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
/* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT:
Expand Down

0 comments on commit 1217e4a

Please sign in to comment.