From 52d840a49b1aab0fea2ddb059f019e3f717fbee7 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Tue, 16 Feb 2016 17:36:06 -1000 Subject: [PATCH] Windows string fixes --- hecl/extern/libBoo | 2 +- hecl/lib/ProjectPath.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hecl/extern/libBoo b/hecl/extern/libBoo index 77e9492b4..d75a727a5 160000 --- a/hecl/extern/libBoo +++ b/hecl/extern/libBoo @@ -1 +1 @@ -Subproject commit 77e9492b43eb73528a842b6e53d125b05afdf5bc +Subproject commit d75a727a5d3881b77aa519a0fba333a8a1d09d60 diff --git a/hecl/lib/ProjectPath.cpp b/hecl/lib/ProjectPath.cpp index 7606d468d..8a99e008e 100644 --- a/hecl/lib/ProjectPath.cpp +++ b/hecl/lib/ProjectPath.cpp @@ -241,8 +241,8 @@ static void _recursiveGlob(Database::Project& proj, nextItStr += '/'; nextItStr += ent.m_name; - struct stat theStat; - if (stat(nextItStr.c_str(), &theStat)) + HECL::Sstat theStat; + if (Stat(nextItStr.c_str(), &theStat)) continue; if (ent.m_isDir)