Fixes warning: enumeration value 'AFFinalBoundaryPhase' not explicitly handled in switch [-Werror,-Wswitch-enum]
This commit is contained in:
parent
b64c6bd846
commit
d38895e5d8
1 changed files with 1 additions and 1 deletions
|
|
@ -1176,7 +1176,7 @@ typedef enum {
|
||||||
[self.inputStream close];
|
[self.inputStream close];
|
||||||
_phase = AFFinalBoundaryPhase;
|
_phase = AFFinalBoundaryPhase;
|
||||||
break;
|
break;
|
||||||
default:
|
case AFFinalBoundaryPhase:
|
||||||
_phase = AFEncapsulationBoundaryPhase;
|
_phase = AFEncapsulationBoundaryPhase;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue