Replace 'unsigned int' with 'unsigned'

'unsigned' is more idiomatic in LLVM style.
This commit is contained in:
Dmitri Gribenko
2016-02-26 13:42:27 -08:00
parent 09c5ef4e10
commit a9f8d97d3e
11 changed files with 15 additions and 15 deletions

View File

@@ -2444,7 +2444,7 @@ ImmutableTextSnapshotRef SwiftEditorDocument::initializeText(
}
ImmutableTextSnapshotRef SwiftEditorDocument::replaceText(
unsigned int Offset, unsigned int Length, llvm::MemoryBuffer *Buf,
unsigned Offset, unsigned Length, llvm::MemoryBuffer *Buf,
bool ProvideSemanticInfo) {
llvm::sys::ScopedLock L(Impl.AccessMtx);