Member function definitions are not recognized if the fully qualified name contains (legal) whitespace.
Builds 3110 through 3118 are affected.
// Class::foo not recognized
void Class::
foo() {
}
// Class::bar not recognized
void Class:: bar() {
}
// Class::baz is recognized
void Class::baz() {
}