Skip to content
Snippets Groups Projects
Commit 424c891b authored by Zachary Turner's avatar Zachary Turner
Browse files

Fix C++ compliance issue. string literals must be const char *

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220434 91177308-0d34-0410-b5e6-96231b3b80d8
parent ec0db6fa
No related branches found
No related tags found
No related merge requests found
......@@ -242,9 +242,9 @@ bool MSVCToolChain::getWindowsSDKLibraryPath(std::string &path) const {
// Windows SDK 8.x installs libraries in a folder whose names depend on the
// version of the OS you're targeting. By default choose the newest, which
// usually corresponds to the version of the OS you've installed the SDK on.
char *tests[] = {"winv6.3", "win8", "win7"};
const char *tests[] = {"winv6.3", "win8", "win7"};
bool found = false;
for (char *test : tests) {
for (const char *test : tests) {
llvm::SmallString<128> testPath(libPath);
llvm::sys::path::append(testPath, test);
if (llvm::sys::fs::exists(testPath.c_str())) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment