Displaying 1 result from an estimated 1 matches for "objectless".
Did you mean:
  objectclass
  
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...//              ::= <unresolved-name>                                    # f(p), N::f(p), ::f(p),
 //                                                                       # freestanding dependent name (e.g., T::x),
 //                                                                       # objectless nonstatic member reference
 //              ::= <expr-primary>
 
 template <class C>
 const char*
 parse_expression(const char* first, const char* last, C& db)
 {
     if (last - first >= 2)
     {
         const char* t = first;
         bool parsed_gs = false;
         if (last...