Part Number: CCSTUDIO-C2000
I'm working with a C++ code base on a C2000 part.
If I have several functions whose names differ only by namespace or class name, I can't select the one I want because the auto-completion doesn't show the fully-qualified names.
For instance, if I have two functions named "do_something" in two different namespaces or classes like this:
namespace1::do_something()
namespace2::do_something()
when I type "do_something" into the disassembly window search box I can't choose which one to go to.
One of the two will be chosen apparently at random.
There is no way to enter a fully-qualified name in this box and no way to select between multiple names with the same base name.