We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341d547 commit e43bb02Copy full SHA for e43bb02
debugger/debugger.cpp
@@ -367,8 +367,6 @@ static void patch_mem(string& params) {
367
size_str = value_str.substr(value_str.find_first_of(".") + 1);
368
value_str = value_str.substr(0, value_str.find_first_of("."));
369
370
- bool is_char = false;
371
-
372
switch (size_str.back()) {
373
case 'b':
374
case 'B':
@@ -389,7 +387,6 @@ static void patch_mem(string& params) {
389
387
case 'c':
390
388
case 'C':
391
value_size = 1;
392
- is_char = true;
393
break;
394
default:
395
cout << "Invalid value size " << size_str << endl;
0 commit comments