diff options
-rw-r--r-- | tools/libclang/CXComment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/CXComment.cpp b/tools/libclang/CXComment.cpp index abf94a93f9..0656ab824b 100644 --- a/tools/libclang/CXComment.cpp +++ b/tools/libclang/CXComment.cpp @@ -1380,7 +1380,7 @@ CXString clang_FullComment_getAsXML(CXComment CXC) { if (!SFC) { SFC = new SimpleFormatContext(Context.getLangOpts()); TU->FormatContext = SFC; - } else if ((TU->FormatInMemoryUniqueId % 10) == 0) { + } else if ((TU->FormatInMemoryUniqueId % 1000) == 0) { // Delete after some number of iterators, so the buffers don't grow // too large. delete SFC; |