And change FileManager::getCanonicalName to use getRealPath.
Details
Details
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 18209 Build 18209: arc lint + arc unit
Event Timeline
Comment Actions
Looks good. Please watch the windows buildbots carefully after landing this.
lib/Basic/FileManager.cpp | ||
---|---|---|
537 | PATH_MAX is not a standard thing and probably not there on windows. I'd just hardcode it to 256. |
Comment Actions
- s/PATH_MAX/4096/
lib/Basic/FileManager.cpp | ||
---|---|---|
537 | PATH_MAX on unit is 4096. Let's go with 4096. |
PATH_MAX is not a standard thing and probably not there on windows. I'd just hardcode it to 256.