Bug 267140 - debugger reports "Target request failed: Cannot look up value of a typedef"
Summary: debugger reports "Target request failed: Cannot look up value of a typedef"
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-debug (show other bugs)
Version: 5.0   Edit
Hardware: All Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: cdt-debug-inbox@eclipse.org CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-03-04 20:50 EST by Chuck Bohling CLA
Modified: 2020-09-04 15:26 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chuck Bohling CLA 2009-03-04 20:50:33 EST
The debugger reports

	Target request failed: Cannot look up value of a typedef.

trying to display some data structure members.

For example:

class xstring : public std::string
{
  public:
	xstring() : string() {}
	xstring(const char* s) : string(s) {}
};

...

 xstring xs("whatever");

 Browsing through xs in the variables window, trying to find the actual string, produces the error.