File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ class COFFImportFileScanner {
3232public:
3333 COFFImportFileScanner (std::set<std::string> &ImportedDynamicLibraries)
3434 : ImportedDynamicLibraries(ImportedDynamicLibraries) {}
35- LLVM_ABI Expected<bool > operator ()(object::Archive &A, MemoryBufferRef MemberBuf,
36- size_t Index) const ;
35+ LLVM_ABI Expected<bool >
36+ operator ()(object::Archive &A, MemoryBufferRef MemberBuf, size_t Index) const ;
3737
3838private:
3939 std::set<std::string> &ImportedDynamicLibraries;
Original file line number Diff line number Diff line change 88#ifndef LLVM_FRONTEND_DIRECTIVE_SPELLING_H
99#define LLVM_FRONTEND_DIRECTIVE_SPELLING_H
1010
11- #include " llvm/Support/Compiler.h"
1211#include " llvm/ADT/StringRef.h"
1312#include " llvm/ADT/iterator_range.h"
13+ #include " llvm/Support/Compiler.h"
1414
1515#include < limits>
1616#include < tuple>
@@ -34,7 +34,8 @@ struct Spelling {
3434 VersionRange Versions;
3535};
3636
37- LLVM_ABI StringRef FindName (llvm::iterator_range<const Spelling *>, unsigned Version);
37+ LLVM_ABI StringRef FindName (llvm::iterator_range<const Spelling *>,
38+ unsigned Version);
3839
3940} // namespace llvm::directive
4041
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ class ResourceRange {
9797
9898 // Returns a reference to the first RangeInfo that overlaps with
9999 // [Info.LowerBound;Info.UpperBound], or, std::nullopt if there is no overlap
100- LLVM_ABI std::optional<const RangeInfo *> getOverlapping (const RangeInfo &Info) const ;
100+ LLVM_ABI std::optional<const RangeInfo *>
101+ getOverlapping (const RangeInfo &Info) const ;
101102
102103 // Return the mapped RangeInfo at X or nullptr if no mapping exists
103104 LLVM_ABI const RangeInfo *lookup (uint32_t X) const ;
You can’t perform that action at this time.
0 commit comments