From: Reid Kleckner Date: Tue, 27 Mar 2018 00:26:13 +0000 (+0000) Subject: Remove dead method X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7399966722d611906d9ce85ac8b28b141b12d18c;p=clang Remove dead method git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328599 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/TargetCXXABI.h b/include/clang/Basic/TargetCXXABI.h index 7fb1f826b0..074f07ca5c 100644 --- a/include/clang/Basic/TargetCXXABI.h +++ b/include/clang/Basic/TargetCXXABI.h @@ -199,13 +199,6 @@ public: llvm_unreachable("bad ABI kind"); } - /// \brief Is the default C++ member function calling convention - /// the same as the default calling convention? - bool isMemberFunctionCCDefault() const { - // Right now, this is always false for Microsoft. - return !isMicrosoft(); - } - /// Are arguments to a call destroyed left to right in the callee? /// This is a fundamental language change, since it implies that objects /// passed by value do *not* live to the end of the full expression.