Bug 1057839 - Fix build failure on VS2013 Update 3 with --enable-warnings-as-errors due to Warning C4717. r=roc

This commit is contained in:
Masatoshi Kimura 2014-08-25 07:13:38 +09:00
Родитель 93e0776b0c
Коммит 3172b0beff
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -98,14 +98,14 @@ public:
ipc::SharedMemory::SharedMemoryType aType,
ipc::Shmem* aShmem) MOZ_OVERRIDE
{
return AllocShmem(aSize, aType, aShmem);
return PImageBridgeParent::AllocShmem(aSize, aType, aShmem);
}
bool AllocUnsafeShmem(size_t aSize,
ipc::SharedMemory::SharedMemoryType aType,
ipc::Shmem* aShmem) MOZ_OVERRIDE
{
return AllocUnsafeShmem(aSize, aType, aShmem);
return PImageBridgeParent::AllocUnsafeShmem(aSize, aType, aShmem);
}
void DeallocShmem(ipc::Shmem& aShmem) MOZ_OVERRIDE