mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-26 07:35:37 +00:00
[Coverity] Fix a bunch of partially-initialised structure warnings
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
|
||||
struct diy_fp
|
||||
{
|
||||
diy_fp() {}
|
||||
diy_fp() : mantissa(0), exp(0) {}
|
||||
diy_fp(uint64_t mant, int exponent) : mantissa(mant), exp(exponent) {}
|
||||
uint64_t mantissa;
|
||||
int exp;
|
||||
|
||||
Reference in New Issue
Block a user