From: SourceForge.net <no...@so...> - 2003-08-05 16:56:01
|
Patches item #783628, was opened at 2003-08-05 16:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=783628&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jonathan Wakely (redi) Assigned to: Nobody/Anonymous (nobody) Summary: Qualify dependent names Initial Comment: This patch adds explicit qualifications to two member function calls, where the member functions in question are inherited from a dependent base class (one that depends on a template parameter). Specifically, the calls to T_Str::size() and T_Str::c_str() from within the scope of ColData_Generic<T_Str> are dependent on the template parameter T_Str, so must be qualified with "this->" or "T_Str::". This patch uses the latter option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=783628&group_id=7869 |