Skip to content

Commit

Permalink
Stop using internal types.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevcadieux committed Mar 1, 2020
1 parent e79cb97 commit b3c5722
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Views/BuildExplorerView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ AnalysisControl BuildExplorerView::OnActivity(const EventStack& eventStack,

switch (eventStack.Back().EventId())
{
case Info<Pass1>::ID:
case Info<Pass2>::ID:
case Info<PreLTCGOptRef>::ID:
case Info<LTCG>::ID:
case Info<OptRef>::ID:
case Info<OptICF>::ID:
case Info<OptLBR>::ID:
case Info<C1DLL>::ID:
case Info<C2DLL>::ID:
case Info<WholeProgramAnalysis>::ID:
case Info<CodeGeneration>::ID:
case EVENT_ID_PASS1:
case EVENT_ID_PASS2:
case EVENT_ID_PRE_LTCG_OPT_REF:
case EVENT_ID_LTCG:
case EVENT_ID_OPT_REF:
case EVENT_ID_OPT_ICF:
case EVENT_ID_OPT_LBR:
case EVENT_ID_C1_DLL:
case EVENT_ID_C2_DLL:
case EVENT_ID_WHOLE_PROGRAM_ANALYSIS:
case EVENT_ID_CODE_GENERATION:
break;

default:
Expand Down

0 comments on commit b3c5722

Please sign in to comment.