*** ./lib/path.cpp.ORIG Tue Dec 10 14:37:49 2013 --- ./lib/path.cpp Tue Dec 10 14:38:02 2013 *************** *** 119,125 **** bool Path::sameFileName(const std::string &fname1, const std::string &fname2) { ! #if defined(__linux__) || defined(__sun) || defined(__hpux) return bool(fname1 == fname2); #elif defined(__GNUC__) return bool(strcasecmp(fname1.c_str(), fname2.c_str()) == 0); --- 119,125 ---- bool Path::sameFileName(const std::string &fname1, const std::string &fname2) { ! #if defined(__linux__) || defined(__sun) || defined(__hpux) || defined(_AIX) return bool(fname1 == fname2); #elif defined(__GNUC__) return bool(strcasecmp(fname1.c_str(), fname2.c_str()) == 0); *** ./lib/preprocessor.cpp.ORIG Tue Dec 10 14:38:29 2013 --- ./lib/preprocessor.cpp Tue Dec 10 14:38:42 2013 *************** *** 2052,2058 **** } } ! std::stack::reference elseIsTrue = elseIsTrueStack.top(); if (line == "#pragma once") { pragmaOnce.push_back(filePath); --- 2052,2059 ---- } } ! // std::stack::reference elseIsTrue = elseIsTrueStack.top(); ! bool elseIsTrue = elseIsTrueStack.top(); if (line == "#pragma once") { pragmaOnce.push_back(filePath);