From e0d5c1426c4ecad8832847e8a69b65ea6fc100fc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 18 Sep 2019 17:27:09 +0200 Subject: NO-OP: fix some Wimplicit-fallthrough gcc can recognize various regexps in comments. Since C++17 provides [[fallthrough]], using /* fallthrough */ consistently seems appropriate until we switch to C++17. see also https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html --- session_utils/export.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'session_utils') diff --git a/session_utils/export.cc b/session_utils/export.cc index ddd0166910..3bffc07f0e 100644 --- a/session_utils/export.cc +++ b/session_utils/export.cc @@ -274,7 +274,7 @@ int main (int argc, char* argv[]) settings._sample_format = ExportFormatBase::SF_Float; break; } - /* fall through */ + /* fallthrough */ default: fprintf(stderr, "Invalid Bit Depth\n"); break; -- cgit v1.2.3