Author: smeenai Date: Tue Aug 6 00:13:53 2019 New Revision: 367984 URL: http://llvm.org/viewvc/llvm-project?rev=367984&view=rev Log: [DirectoryWatcher] Fix asserts Mac builds
Add a missing semicolon after an assert. Remove the period from the assert message while I'm here, because we don't usually have those. Modified: cfe/trunk/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp Modified: cfe/trunk/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp?rev=367984&r1=367983&r2=367984&view=diff ============================================================================== --- cfe/trunk/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp (original) +++ cfe/trunk/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp Tue Aug 6 00:13:53 2019 @@ -210,7 +210,7 @@ llvm::Expected<std::unique_ptr<Directory assert(!Path.empty() && "Path.empty()"); auto EventStream = createFSEventStream(Path, Receiver, Queue); - assert(EventStream && "EventStream expected to be non-null.") + assert(EventStream && "EventStream expected to be non-null"); std::unique_ptr<DirectoryWatcher> Result = llvm::make_unique<DirectoryWatcherMac>(EventStream, Receiver, Path); _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits