Minor code review feedback

This commit is contained in:
Chuck Walbourn 2018-06-05 12:41:17 -07:00
parent a9f98419cb
commit 62ff7da94b

View File

@ -756,9 +756,9 @@ namespace
float RoughMSE(_Inout_ EncodeParams* pEP) const; float RoughMSE(_Inout_ EncodeParams* pEP) const;
private: private:
const static ModeDescriptor ms_aDesc[][82]; static const ModeDescriptor ms_aDesc[][82];
const static ModeInfo ms_aInfo[]; static const ModeInfo ms_aInfo[];
const static int ms_aModeToInfo[]; static const int ms_aModeToInfo[];
}; };
// BC67 compression (16b bits per texel) // BC67 compression (16b bits per texel)
@ -860,7 +860,7 @@ namespace
static float RoughMSE(_Inout_ EncodeParams* pEP, _In_ size_t uShape, _In_ size_t uIndexMode); static float RoughMSE(_Inout_ EncodeParams* pEP, _In_ size_t uShape, _In_ size_t uIndexMode);
private: private:
const static ModeInfo ms_aInfo[]; static const ModeInfo ms_aInfo[];
}; };
} }