From: Davide Italiano Date: Mon, 22 Aug 2016 21:33:12 +0000 (+0000) Subject: [AST] Remove unused function, to silence a GCC7 warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=813dddba52f06722a8abcf5725f3fdb9df4c488f;p=clang [AST] Remove unused function, to silence a GCC7 warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@279479 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp index cff836959d..9aead7b06b 100644 --- a/lib/AST/StmtProfile.cpp +++ b/lib/AST/StmtProfile.cpp @@ -93,10 +93,6 @@ void StmtProfiler::VisitCompoundStmt(const CompoundStmt *S) { VisitStmt(S); } -void StmtProfiler::VisitSwitchCase(const SwitchCase *S) { - VisitStmt(S); -} - void StmtProfiler::VisitCaseStmt(const CaseStmt *S) { VisitStmt(S); }