Replace empty constructors with default constructors #88

This commit is contained in:
nillerusr
2022-11-05 14:23:05 +03:00
parent ba90de20d9
commit 8fbc002a37
97 changed files with 192 additions and 2620 deletions
+1 -3
View File
@@ -37,9 +37,7 @@ ConVar r_visualizelighttracesshowfulltrace( "r_visualizelighttracesshowfulltrace
//-----------------------------------------------------------------------------
struct LightVecState_t
{
LightVecState_t()
{
}
LightVecState_t() = default;
Ray_t m_Ray;
float m_HitFrac;
float* m_pTextureS;