aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/wtf
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2015-05-19 11:35:12 +0200
committerMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2015-05-19 11:45:55 +0000
commit0ace63da65a222873ecf4e966afe88afb89a25f8 (patch)
treedf465128b7616c31af6762c32b3ba6a30ac65d32 /src/3rdparty/masm/wtf
parentf19904953538bc33897b3f65f439069d453e756f (diff)
WinRT: fix warnings
Change-Id: If11db499d743cbe79959145ecfcbcfec896a6845 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by: Oliver Wolff <oliver.wolff@theqtcompany.com>
Diffstat (limited to 'src/3rdparty/masm/wtf')
-rw-r--r--src/3rdparty/masm/wtf/OSAllocatorWinRT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/masm/wtf/OSAllocatorWinRT.cpp b/src/3rdparty/masm/wtf/OSAllocatorWinRT.cpp
index ba251d2ecf..d684367ec6 100644
--- a/src/3rdparty/masm/wtf/OSAllocatorWinRT.cpp
+++ b/src/3rdparty/masm/wtf/OSAllocatorWinRT.cpp
@@ -55,7 +55,7 @@ void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bo
return reserveUncommitted(bytes, usage, writable, executable);
}
-void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable)
+void OSAllocator::commit(void*, size_t, bool, bool)
{
CRASH(); // Unimplemented
}