File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ FileSpec::FileSpec(llvm::StringRef path, Style style) : m_style(style) {
73
73
}
74
74
75
75
FileSpec::FileSpec (llvm::StringRef path, const llvm::Triple &triple)
76
- : FileSpec{path, Triple .isOSWindows () ? Style ::windows : Style ::posix} {}
76
+ : FileSpec{path, triple .isOSWindows () ? Style ::windows : Style ::posix} {}
77
77
78
78
// Copy constructor
79
79
FileSpec::FileSpec (const FileSpec *rhs) : m_directory(), m_filename() {
@@ -228,8 +228,8 @@ void FileSpec::SetFile(llvm::StringRef pathname, Style style) {
228
228
m_directory.SetString (directory);
229
229
}
230
230
231
- void FileSpec::SetFile (llvm::StringRef path, const llvm::Triple &Triple ) {
232
- return SetFile (path, Triple .isOSWindows () ? Style ::windows : Style ::posix);
231
+ void FileSpec::SetFile (llvm::StringRef path, const llvm::Triple &triple ) {
232
+ return SetFile (path, triple .isOSWindows () ? Style ::windows : Style ::posix);
233
233
}
234
234
235
235
// Convert to pointer operator. This allows code to check any FileSpec objects
You can’t perform that action at this time.
0 commit comments