commit | 9eb6e2e3cbfa431be7f5180b5196e8f959a34379 | [log] [tgz] |
---|---|---|
author | Angel Garcia Gomez <angelgarcia@google.com> | Wed Oct 14 10:30:32 2015 +0000 |
committer | Angel Garcia Gomez <angelgarcia@google.com> | Wed Oct 14 10:30:32 2015 +0000 |
tree | 5ae7c3c052894db40687fe410edf34815f9117be | |
parent | 2b8c98100a7f8feabfde7c45c415f491406f4696 [diff] [blame] |
Use __SIZE_TYPE__ to fix buildbot failures. Summary: Use __SIZE_TYPE__ to fix buildbot failures. Reviewers: klimek Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D13720 llvm-svn: 250288
diff --git a/clang-tools-extra/test/clang-tidy/modernize-make-unique.cpp b/clang-tools-extra/test/clang-tidy/modernize-make-unique.cpp index 4fbc7dd..ce92b4c 100644 --- a/clang-tools-extra/test/clang-tidy/modernize-make-unique.cpp +++ b/clang-tools-extra/test/clang-tidy/modernize-make-unique.cpp
@@ -48,7 +48,7 @@ template<class T> using unique_ptr_ = std::unique_ptr<T>; -void *operator new(unsigned long Count, void *Ptr); +void *operator new(__SIZE_TYPE__ Count, void *Ptr); int g(std::unique_ptr<int> P);