Bug 721069. Remove default case from filter switch statement. r=cjones

This fixes a clang warning and allows us to get warnings when a new enumeration is added to the enum.
This commit is contained in:
Jeff Muizelaar 2012-01-25 22:15:22 -05:00
Родитель 07bc1ca8b1
Коммит 6a34bc9403
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -484,10 +484,8 @@ struct ParamTraits<mozilla::GraphicsFilterType>
WriteParam(msg, int32(param));
return;
default:
NS_RUNTIMEABORT("not reached");
return;
}
NS_RUNTIMEABORT("not reached");
}
static bool Read(const Message* msg, void** iter, paramType* result)