Adjusted comments

This commit is contained in:
BLM 2015-07-21 12:36:40 -05:00
parent e9429ba246
commit 4b381b72c9
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,6 @@ ShortPhoneNumber* parsePhoneNumber(const char* number_str, const char* country)
ShortPhoneNumber* short_number; ShortPhoneNumber* short_number;
short_number = (ShortPhoneNumber*)palloc0(sizeof(ShortPhoneNumber)); short_number = (ShortPhoneNumber*)palloc0(sizeof(ShortPhoneNumber));
//TODO: can this be removed? (palloc normally handles this, right?)
if(short_number == nullptr) { if(short_number == nullptr) {
throw std::bad_alloc(); throw std::bad_alloc();
} }
@ -79,6 +78,7 @@ ShortPhoneNumber* parsePhoneNumber(const char* number_str, const char* country)
PhoneNumberUtil::ErrorType error; PhoneNumberUtil::ErrorType error;
error = phoneUtil->Parse(number_str, country, &number); error = phoneUtil->Parse(number_str, country, &number);
if(error == PhoneNumberUtil::NO_PARSING_ERROR) { if(error == PhoneNumberUtil::NO_PARSING_ERROR) {
//Initialize short_number using placement new.
new(short_number) ShortPhoneNumber(number); new(short_number) ShortPhoneNumber(number);
return short_number; return short_number;
} else { } else {