[llvm-commits] [llvm] r168271 - /llvm/trunk/docs/CodingStandards.rst

Sean Silva silvas at purdue.edu
Sat Nov 17 13:01:44 PST 2012


Author: silvas
Date: Sat Nov 17 15:01:44 2012
New Revision: 168271

URL: http://llvm.org/viewvc/llvm-project?rev=168271&view=rev
Log:
docs: Add link to HowToSetUpLLVMStyleRTTI

Modified:
    llvm/trunk/docs/CodingStandards.rst

Modified: llvm/trunk/docs/CodingStandards.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.rst?rev=168271&r1=168270&r2=168271&view=diff
==============================================================================
--- llvm/trunk/docs/CodingStandards.rst (original)
+++ llvm/trunk/docs/CodingStandards.rst Sat Nov 17 15:01:44 2012
@@ -409,7 +409,8 @@
 
 That said, LLVM does make extensive use of a hand-rolled form of RTTI that use
 templates like `isa<>, cast<>, and dyn_cast<> <ProgrammersManual.html#isa>`_.
-This form of RTTI is opt-in and can be added to any class.  It is also
+This form of RTTI is opt-in and can be
+:doc:`added to any class <HowToSetUpLLVMStyleRTTI>`. It is also
 substantially more efficient than ``dynamic_cast<>``.
 
 .. _static constructor:





More information about the llvm-commits mailing list