<div dir="ltr">FYI, the preferred fix is to replace the function name with \brief; see <a href="http://llvm.org/docs/CodingStandards.html#doxygen-use-in-documentation-comments">http://llvm.org/docs/CodingStandards.html#doxygen-use-in-documentation-comments</a>, "Don’t duplicate function or class name at the beginning of the comment."</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 3, 2014 at 9:04 AM, Jonathan Roelofs <span dir="ltr"><<a href="mailto:jonathan@codesourcery.com" target="_blank">jonathan@codesourcery.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: jroelofs<br>
Date: Wed Dec  3 11:04:52 2014<br>
New Revision: 223241<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=223241&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=223241&view=rev</a><br>
Log:<br>
Fix isThreadModelSupported()'s comment. NFC<br>
<br>
Modified:<br>
    cfe/trunk/include/clang/Driver/ToolChain.h<br>
<br>
Modified: cfe/trunk/include/clang/Driver/ToolChain.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/ToolChain.h?rev=223241&r1=223240&r2=223241&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/ToolChain.h?rev=223241&r1=223240&r2=223241&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/include/clang/Driver/ToolChain.h (original)<br>
+++ cfe/trunk/include/clang/Driver/ToolChain.h Wed Dec  3 11:04:52 2014<br>
@@ -251,7 +251,7 @@ public:<br>
   /// getThreadModel() - Which thread model does this target use?<br>
   virtual std::string getThreadModel() const { return "posix"; }<br>
<br>
-  /// supportsThreadModel() - Does this target support a thread model?<br>
+  /// isThreadModelSupported() - Does this target support a thread model?<br>
   virtual bool isThreadModelSupported(const StringRef Model) const;<br>
<br>
   /// ComputeLLVMTriple - Return the LLVM target triple to use, after taking<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div>