> + Removes C++ name qualifications from some definitions. > + > + For example: > + > + >>> fix_definition("bool flag") > + 'bool flag' > + >>> fix_definition("bool FooBar::flag") > + 'bool flag' > + >>> fix_definition("void(* _GeanyObjectClass::project_open) (GKeyFile *keyfile)") > + 'void(* project_open) (GKeyFile *keyfile)' > + > + """ > + return CXX_NAMESPACE_RE.sub(r"", s) > + > + > +class AtAt(object):
unused (?)
—
Reply to this email directly or view it on GitHub.