X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FHowToSetUpLLVMStyleRTTI.rst;h=96275e7dc23219b4805d4c3e8e5bff141503be35;hb=4d97a1a559452358bca063a53454ce743495a680;hp=e0f865a141c7edef20e9a0ca4ab9279a4400f412;hpb=229aa6d23b7dc70e3e7cc81d385cf815ac478a80;p=oota-llvm.git diff --git a/docs/HowToSetUpLLVMStyleRTTI.rst b/docs/HowToSetUpLLVMStyleRTTI.rst index e0f865a141c..96275e7dc23 100644 --- a/docs/HowToSetUpLLVMStyleRTTI.rst +++ b/docs/HowToSetUpLLVMStyleRTTI.rst @@ -223,8 +223,8 @@ steps: [...] template static bool classof(const T *, - ::llvm::enable_if_c< - ::llvm::is_base_of::value + ::std::enable_if< + ::std::is_base_of::value >::type* = 0) { return true; } [...] };