[llvm] r219862 - Updating documentation based on my change to remove the template disambiguation.

Chris Bieneman beanz at apple.com
Wed Oct 15 16:11:40 PDT 2014


Author: cbieneman
Date: Wed Oct 15 18:11:40 2014
New Revision: 219862

URL: http://llvm.org/viewvc/llvm-project?rev=219862&view=rev
Log:
Updating documentation based on my change to remove the template disambiguation.

Modified:
    llvm/trunk/include/llvm/Support/Options.h

Modified: llvm/trunk/include/llvm/Support/Options.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Options.h?rev=219862&r1=219861&r2=219862&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Options.h (original)
+++ llvm/trunk/include/llvm/Support/Options.h Wed Oct 15 18:11:40 2014
@@ -28,9 +28,9 @@
 /// example of reading the above option would be:
 ///
 /// ScalarizeLoadStore =
-///   M.getContext().template getOption<bool,
-///                                     Scalarizer,
-///                                     &Scalarizer::ScalarizeLoadStore>();
+///   M.getContext().getOption<bool,
+///                            Scalarizer,
+///                            &Scalarizer::ScalarizeLoadStore>();
 ///
 //===----------------------------------------------------------------------===//
 





More information about the llvm-commits mailing list