Skip to content

Commit 4f8bde6

Browse files
committed
[DH] run clang-format
1 parent 1cf7a68 commit 4f8bde6

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

engine/class_modules/sc_demon_hunter.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9279,7 +9279,8 @@ bool demon_hunter_t::validate_fight_style( fight_style_e style ) const
92799279
#ifdef NDEBUG
92809280
if ( style == FIGHT_STYLE_DUNGEON_SLICE && !options.enable_dungeon_slice )
92819281
{
9282-
sim->error( SEVERE, "Dungeon Slice is disabled for Demon Hunter. To force enable, use enable_dungeon_slice=1 option." );
9282+
sim->error( SEVERE,
9283+
"Dungeon Slice is disabled for Demon Hunter. To force enable, use enable_dungeon_slice=1 option." );
92839284
sim->cancel();
92849285
}
92859286
#endif
@@ -9288,9 +9289,11 @@ bool demon_hunter_t::validate_fight_style( fight_style_e style ) const
92889289
switch ( specialization() )
92899290
{
92909291
case DEMON_HUNTER_HAVOC:
9291-
return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_DUNGEON_ROUTE || style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
9292+
return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_DUNGEON_ROUTE ||
9293+
style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
92929294
case DEMON_HUNTER_VENGEANCE:
9293-
return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_CASTING_PATCHWERK || style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
9295+
return style == FIGHT_STYLE_PATCHWERK || style == FIGHT_STYLE_CASTING_PATCHWERK ||
9296+
style == FIGHT_STYLE_HECTIC_ADD_CLEAVE;
92949297
default:
92959298
return false;
92969299
}

0 commit comments

Comments
 (0)