Comment to HTML conversion: skip \tparam commands with whitespace paragraphs


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161096 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/libclang/CXComment.cpp b/tools/libclang/CXComment.cpp
index 0d971c3..ae349c0 100644
--- a/tools/libclang/CXComment.cpp
+++ b/tools/libclang/CXComment.cpp
@@ -676,6 +676,9 @@
       if (!TPCC->hasParamName())
         break;
 
+      if (!TPCC->hasNonWhitespaceParagraph())
+        break;
+
       TParams.push_back(TPCC);
       break;
     }