r279479 - [AST] Remove unused function, to silence a GCC7 warning.
Davide Italiano via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 22 14:33:13 PDT 2016
Author: davide
Date: Mon Aug 22 16:33:12 2016
New Revision: 279479
URL: http://llvm.org/viewvc/llvm-project?rev=279479&view=rev
Log:
[AST] Remove unused function, to silence a GCC7 warning.
Modified:
cfe/trunk/lib/AST/StmtProfile.cpp
Modified: cfe/trunk/lib/AST/StmtProfile.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/StmtProfile.cpp?rev=279479&r1=279478&r2=279479&view=diff
==============================================================================
--- cfe/trunk/lib/AST/StmtProfile.cpp (original)
+++ cfe/trunk/lib/AST/StmtProfile.cpp Mon Aug 22 16:33:12 2016
@@ -93,10 +93,6 @@ void StmtProfiler::VisitCompoundStmt(con
VisitStmt(S);
}
-void StmtProfiler::VisitSwitchCase(const SwitchCase *S) {
- VisitStmt(S);
-}
-
void StmtProfiler::VisitCaseStmt(const CaseStmt *S) {
VisitStmt(S);
}
More information about the cfe-commits
mailing list