mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-14 17:28:07 +00:00
string format expression op when version is below 3
This commit is contained in:
committed by
Ryan Fleury
parent
1b6e9e9d7b
commit
9e965e345f
+3
-3
@@ -558,13 +558,13 @@ dw_string_from_expr_op(Arena *arena, DW_Version ver, DW_Ext ext, DW_ExprOp op)
|
||||
DW_Expr_V4_XList(X)
|
||||
}
|
||||
} // fall-through
|
||||
case DW_Version_3: {
|
||||
case DW_Version_3:
|
||||
case DW_Version_2:
|
||||
case DW_Version_1: {
|
||||
switch (op) {
|
||||
DW_Expr_V3_XList(X)
|
||||
}
|
||||
} // fall-through
|
||||
case DW_Version_2:
|
||||
case DW_Version_1:
|
||||
case DW_Version_Null:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user