Skip to content

Commit

Permalink
udpate comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kupsch committed Oct 16, 2020
1 parent addc0ab commit bd9b701
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions common/src/symbolDemangle.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@


// Returns a malloc'd string that is the demangled symbol name. THe caller is
// responsible for the freeing this memory, return NULL on failure. The symbol
// name symName is demangled using the cplus_demangle function after first
// removing any versioning suffixes (first '@') or stabs suffixes (first ':')
// to create the mangled name. If cplus_demangle fails, the mangled name is
// returned unmodified. If cplus_demangle succeeds and includeParams is false,
// then any clone suffixes (the first '.' to the end of the mangled name) are
// appended to the value from cplus_demangle.
// responsible for the freeing this memory. Returns NULL on malloc failure.
// The symbol name symName is demangled using the cplus_demangle function after
// first removing any versioning suffixes (first '@') or stabs suffixes (first
// ':') to create the mangled name. If cplus_demangle fails, the mangled name
// is returned unmodified. If cplus_demangle succeeds and includeParams is
// false, then any clone suffixes (the first '.' to the end of the mangled
// name) are appended to the value from cplus_demangle.
//
// Other than the removal of versioning and stabs suffixes, and appending any
// clone suffixes if includeParams is false to the result, the result should be
Expand Down

0 comments on commit bd9b701

Please sign in to comment.