Merge pull request #6518 from lioncash/func

maxwell3d: Add missing return in default SizeInBytes() case
merge-requests/60/head
bunnei 2021-06-23 09:43:00 +07:00 committed by GitHub
commit d8d9bb0dfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

@ -242,6 +242,7 @@ public:
return 4;
default:
UNREACHABLE();
return 1;
}
}