From 833214537323345721033b4d88f026d23152b895 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Mon, 22 Aug 2016 21:33:12 +0000 Subject: [PATCH] [AST] Remove unused function, to silence a GCC7 warning. llvm-svn: 279479 --- clang/lib/AST/StmtProfile.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index cff836959d0a..9aead7b06bc3 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/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); }