forked from OSchip/llvm-project
Handle the default case
This was omitted in D45422 resulting in a warning. Differential Revision: https://reviews.llvm.org/D45499 llvm-svn: 329758
This commit is contained in:
parent
262589db70
commit
d5c9420ff5
|
@ -334,6 +334,8 @@ void NaClToolChain::addLibCxxIncludePaths(
|
|||
llvm::sys::path::append(P, "mipsel-nacl/include/c++/v1");
|
||||
addSystemInclude(DriverArgs, CC1Args, P.str());
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue