Skip to content

Commit 85a9006

Browse files
committed
Some indentation issue fixes. NFC
1 parent 1778432 commit 85a9006

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

include/swift/Serialization/SerializedModuleLoader.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ class SerializedModuleLoaderBase : public ModuleLoader {
9494
std::unique_ptr<llvm::MemoryBuffer> *ModuleDocBuffer);
9595

9696
void
97-
openModuleSourceInfoFileIfPresent(AccessPathElem ModuleID,
98-
StringRef ModulePath,
99-
StringRef ModuleSourceInfoFileName,
97+
openModuleSourceInfoFileIfPresent(
98+
AccessPathElem ModuleID,
99+
StringRef ModulePath,
100+
StringRef ModuleSourceInfoFileName,
100101
std::unique_ptr<llvm::MemoryBuffer> *ModuleSourceInfoBuffer);
101102

102103
/// If the module loader subclass knows that all options have been tried for

lib/Serialization/SerializeDoc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ class StringWriter {
596596
Buffer.append(Text);
597597
Buffer.push_back('\0');
598598
}
599-
return (*IterAndIsNew.first).getValue();
599+
return IterAndIsNew.first->getValue();
600600
}
601601

602602
void emitSourceFilesRecord(llvm::BitstreamWriter &Out) {

0 commit comments

Comments
 (0)