From b4725c7d2e9d96f15ff618b21cf2fb7c190538a8 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Tue, 10 Nov 2015 10:11:38 -1000 Subject: [PATCH] libBoo update and windows fixes --- hecl/driver/ToolCook.hpp | 2 +- hecl/extern/libBoo | 2 +- hecl/lib/Database/Project.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hecl/driver/ToolCook.hpp b/hecl/driver/ToolCook.hpp index 5aa0ca70f..e83cfa591 100644 --- a/hecl/driver/ToolCook.hpp +++ b/hecl/driver/ToolCook.hpp @@ -29,7 +29,7 @@ public: { if (arg.empty()) continue; - else if (!arg.compare("--fast")) + else if (!arg.compare(_S("--fast"))) { m_fast = true; continue; diff --git a/hecl/extern/libBoo b/hecl/extern/libBoo index df72fca65..6d3b8d319 160000 --- a/hecl/extern/libBoo +++ b/hecl/extern/libBoo @@ -1 +1 @@ -Subproject commit df72fca65d3a04a1b28957823e6db956ec68ecff +Subproject commit 6d3b8d319811e98105eb4d3d0948b8c25d8ef61c diff --git a/hecl/lib/Database/Project.cpp b/hecl/lib/Database/Project.cpp index d3805d9cf..97ed63e97 100644 --- a/hecl/lib/Database/Project.cpp +++ b/hecl/lib/Database/Project.cpp @@ -382,7 +382,7 @@ static void VisitFile(const ProjectPath& path, bool force, bool fast, { ProjectPath cooked = path.getCookedPath(*spec.first); if (fast) - cooked = cooked.getWithExtension(".fast"); + cooked = cooked.getWithExtension(_S(".fast")); if (force || cooked.getPathType() == ProjectPath::PT_NONE || path.getModtime() > cooked.getModtime()) {