Make this SmallVector size a power of two as suggested by Chandler
[oota-llvm.git] / docs / HowToSetUpLLVMStyleRTTI.rst
index e0f865a141c7edef20e9a0ca4ab9279a4400f412..96275e7dc23219b4805d4c3e8e5bff141503be35 100644 (file)
@@ -223,8 +223,8 @@ steps:
         [...]
         template <class T>
         static bool classof(const T *,
-                            ::llvm::enable_if_c<
-                              ::llvm::is_base_of<Foo, T>::value
+                            ::std::enable_if<
+                              ::std::is_base_of<Foo, T>::value
                             >::type* = 0) { return true; }
         [...]
       };