1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix a typo: isvalid -> isValid

llvm-svn: 17621
This commit is contained in:
Reid Spencer 2004-11-08 08:27:51 +00:00
parent 306136fdf0
commit af24480f3e

View File

@ -23,7 +23,7 @@ namespace llvm {
using namespace sys;
bool
Path::isvalid() const {
Path::isValid() const {
if (path.empty())
return false;
char pathname[MAXPATHLEN];