Skip to content

Commit

Permalink
COMP: remove warnings due to unhandled enum value
Browse files Browse the repository at this point in the history
Warning introduced by 2c8ae75.
  • Loading branch information
Simon Rit committed Apr 16, 2020
1 parent df4a9c8 commit 69b08d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/rtkGgoFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ SetBackProjectionFromGgo(const TArgsInfo & args_info, TIterativeReconstructionFi
{
switch (args_info.bp_arg)
{
case (-1): // bp__NULL, keep default
break;
case (0): // bp_arg_VoxelBasedBackProjection
recon->SetBackProjectionFilter(TIterativeReconstructionFilter::BP_VOXELBASED);
break;
Expand Down Expand Up @@ -322,6 +324,8 @@ SetForwardProjectionFromGgo(const TArgsInfo & args_info, TIterativeReconstructio
{
switch (args_info.fp_arg)
{
case (-1): // fp__NULL, keep default
break;
case (0): // fp_arg_Joseph
recon->SetForwardProjectionFilter(TIterativeReconstructionFilter::FP_JOSEPH);
break;
Expand Down

0 comments on commit 69b08d8

Please sign in to comment.