Fixed bad exception specification

This commit is contained in:
BLM 2015-07-16 15:03:39 -05:00
parent 2a2e35c15e
commit ef761bbe3b
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ void logInfo(const char* msg) {
*/
//Internal function used by phone_number_in and parse_phone_number
PhoneNumber* parsePhoneNumber(const char* number_str, const char* country) throw () {
PhoneNumber* parsePhoneNumber(const char* number_str, const char* country) {
PhoneNumber *number;
number = (PhoneNumber*)palloc0(sizeof(PhoneNumber));