Hello..

Is it smart to return; when void ends?

For instance:

Code:
void somefunction() {
  dosomething();
  return;
}