Bug 1222169 - remove unused function from PluginProcessChild.cpp; r=aklotz

clang-cl says this function is unused.  grepping around confirms that.
This commit is contained in:
Nathan Froyd 2015-11-05 15:09:03 -05:00
Родитель fbc669c142
Коммит e8d1b7e824
1 изменённых файлов: 0 добавлений и 10 удалений

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

@ -35,16 +35,6 @@ using mozilla::ipc::IOThreadChild;
#ifdef OS_WIN
#include "nsSetDllDirectory.h"
#include <algorithm>
namespace {
std::size_t caseInsensitiveFind(std::string aHaystack, std::string aNeedle) {
std::transform(aHaystack.begin(), aHaystack.end(), aHaystack.begin(), ::tolower);
std::transform(aNeedle.begin(), aNeedle.end(), aNeedle.begin(), ::tolower);
return aHaystack.find(aNeedle);
}
}
#endif
namespace mozilla {