fix: Windows archive file discovery

This commit is contained in:
Tropical
2026-04-10 20:37:08 -07:00
parent 93215033e4
commit b7ad828882
9 changed files with 6 additions and 31 deletions

View File

@@ -350,7 +350,7 @@ inline bool eTYPE_FLAGSET(eINSTANCEOF flag, eINSTANCEOF claz) {
/// FOR CHECKING ///
#if !(defined _WINDOWS64)
#if 1
class SubClass {
static void checkDerivations() {}

View File

@@ -122,9 +122,8 @@ File::File(const std::string& pathname) {
File::File(const std::string& parent,
const std::string& child) //: m_abstractPathName( child )
{
m_abstractPathName =
pathRoot + pathSeparator + parent + pathSeparator + child;
// this->parent = new File( parent );
// Using std::filesystem::path to join paths properly
m_abstractPathName = (std::filesystem::path(parent) / child).string();
}
// Creates a new File instance by converting the given path vector into an