Bug 1235236 - Annotate intentional switch fallthrough to suppress -Wimplicit-fallthrough warning in modules/libjar/. r=aklotz

modules/libjar/nsJARInputStream.cpp:112:13 [-Wimplicit-fallthrough] unannotated fall-through between switch labels
This commit is contained in:
Chris Peterson 2015-11-22 22:13:58 -08:00
parent dc80f8f228
commit 951bc898a7

View File

@ -110,7 +110,7 @@ nsJARInputStream::InitDirectory(nsJAR* aJar,
case ')':
case '\\':
escDirName.Append('\\');
// fall through
MOZ_FALLTHROUGH;
default:
escDirName.Append(*curr);
}