Adding an 80 character comment at the end of each method so it is easy to find the end of the method. Like this:
void doSomething()
{
}
//----------------------------------------------------------------------------
The rationale being that:
- some users don't use IDE's that have code folding (Ok I will give them that).
- a space between methods is not clear since people may not follow the other coding standards about indenting and brace placement, hence it would be hard to find the end of a function. (Not releavent; if you need to add this because people don't follow your coding standard then why should they follow this one?)