mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-20 22:20:50 -06:00
BUG: fix small compile issues on HP aCC
This commit is contained in:
@@ -54,6 +54,7 @@
|
||||
|
||||
#ifdef CMAKE_NO_STD_NAMESPACE
|
||||
#define std
|
||||
# define for if (false) { } else for
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
@@ -43,9 +43,9 @@ bool cmSystemTools::s_ErrorOccured = false;
|
||||
void cmSystemTools::GetPath(std::vector<std::string>& path)
|
||||
{
|
||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||
char* pathSep = ";";
|
||||
const char* pathSep = ";";
|
||||
#else
|
||||
char* pathSep = ":";
|
||||
const char* pathSep = ":";
|
||||
#endif
|
||||
std::string pathEnv = getenv("PATH");
|
||||
std::string::size_type start =0;
|
||||
|
||||
Reference in New Issue
Block a user