Fixes for gcc 10.3.0 (#112)

* Fixes for gcc 10.3.0

* Fixes for gcc 10.3.0

* Removed obsolete declaration

* Changes based on review
This commit is contained in:
uweseimet
2021-06-23 02:03:53 +02:00
committed by GitHub
parent 88f59a6f1e
commit 7e45d11215
5 changed files with 12 additions and 23 deletions

View File

@@ -206,24 +206,6 @@ void FASTCALL Filepath::Split()
free(pBase);
}
//---------------------------------------------------------------------------
//
// パス合成
//
//---------------------------------------------------------------------------
void FASTCALL Filepath::Make()
{
ASSERT(this);
// パス初期化
m_szPath[0] = _T('\0');
// 合成
strncat(m_szPath, m_szDir, ARRAY_SIZE(m_szPath) - strlen(m_szPath));
strncat(m_szPath, m_szFile, ARRAY_SIZE(m_szPath) - strlen(m_szPath));
strncat(m_szPath, m_szExt, ARRAY_SIZE(m_szPath) - strlen(m_szPath));
}
//---------------------------------------------------------------------------
//
// クリアされているか