Changeset 1595
- Timestamp:
- 08/29/08 17:28:20 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
peppy/lib/foldexplorer.py (modified) (1 diff)
-
tests/samples/cppfunctions.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/peppy/lib/foldexplorer.py
r1180 r1595 175 175 _ws = r'(?:\s|//.*?\n|/[*].*?[*]/)+' 176 176 177 funcre = re.compile(r' \s*((?:[a-zA-Z0-9_*&\s])+?(?:\s|[*]+))' # return arguments177 funcre = re.compile(r'(?:\s*const)?\s*((?:[a-zA-Z0-9_*&\s])+?(?:\s|[*]+))' # return arguments 178 178 r'([a-zA-Z_][a-zA-Z0-9_:]*)' # method name 179 179 r'(\s*\((?:([^;]*?|\s*))\))' # signature -
trunk/tests/samples/cppfunctions.cpp
r1371 r1595 137 137 } 138 138 139 const float& Stuff::Things(const Gunk *Crud) { 140 stuff; 141 } 142 143 const float& Things(const int *Crud) { 144 stuff; 145 } 146
