From: Sylvestre Ledru Date: Mon, 18 Aug 2014 15:00:11 +0000 (+0000) Subject: Update the call to llvm::sys::fs::UniqueID to match the definition: UniqueID(uint64_t... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09163b8a40e5f13991d73de2b3e55b68131a2de9;p=clang Update the call to llvm::sys::fs::UniqueID to match the definition: UniqueID(uint64_t Device, uint64_t File) Fixes CID 1095247 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215896 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp index 4e2a755f8c..eb7e7deccb 100644 --- a/lib/Lex/PTHLexer.cpp +++ b/lib/Lex/PTHLexer.cpp @@ -684,7 +684,7 @@ public: uint64_t File = endian::readNext(d); uint64_t Device = endian::readNext(d); - llvm::sys::fs::UniqueID UniqueID(File, Device); + llvm::sys::fs::UniqueID UniqueID(Device, File); time_t ModTime = endian::readNext(d); uint64_t Size = endian::readNext(d); return data_type(Size, ModTime, UniqueID, IsDirectory);