From 0408edf1be01bada920ba001e49e9fd4b1d0fb5e Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Thu, 7 Jan 2016 14:50:44 -1000 Subject: [PATCH] Win32 fix --- hecl/include/HECL/HECL.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hecl/include/HECL/HECL.hpp b/hecl/include/HECL/HECL.hpp index a235bd862..1f236c045 100644 --- a/hecl/include/HECL/HECL.hpp +++ b/hecl/include/HECL/HECL.hpp @@ -941,13 +941,13 @@ public: auto it = relPath.cbegin(); if (*it == '/') { - ret.push_back(_S("/")); + ret.push_back("/"); ++it; } std::string comp; for (; it != relPath.cend() ; ++it) { - if (*it == _S('/')) + if (*it == '/') { if (comp.empty()) continue;