Commit 952d2738 by Ben Clayton

Fix windows build

MSVC does not like: sizeof(T[N]) Change-Id: If7586a0d29f609372e036fdb31481e923469a7ad Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/26349Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com>
parent 2995dc2a
......@@ -68,7 +68,7 @@ namespace sw
Intermediate(uint32_t size) : contents(new ContentsType[size]), size(size) {
#if !defined(NDEBUG) || defined(DCHECK_ALWAYS_ON)
memset(contents, 0, sizeof(ContentsType[size]));
memset(contents, 0, sizeof(ContentsType) * size);
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment