Skip to content

Commit 2b89941

Browse files
committed
Un-constify pointer_valuet data
So that we can assume the implicit assignment operator.
1 parent 34c54a6 commit 2b89941

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/memory-analyzer/gdb_api.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ class gdb_apit
8181
{
8282
}
8383

84-
const memory_addresst address;
85-
const std::string pointee;
86-
const std::string character;
87-
const optionalt<std::string> string;
84+
memory_addresst address;
85+
std::string pointee;
86+
std::string character;
87+
optionalt<std::string> string;
8888
bool valid;
8989
};
9090

0 commit comments

Comments
 (0)