Browse Source

fix building -- remove duplicate FreeVoiceList implementation

master
Reece Dunn 13 years ago
parent
commit
924d1a865c
1 changed files with 0 additions and 13 deletions
  1. 0
    13
      src/voices.cpp

+ 0
- 13
src/voices.cpp View File

@@ -1744,19 +1744,6 @@ espeak_ERROR SetVoiceByProperties(espeak_VOICE *voice_selector)
return(EE_OK);
} // end of SetVoiceByProperties

void FreeVoiceList()
{
for(int ix=0; ix<n_voices_list; ix++)
{
if(voices_list[ix] != NULL)
{
free(voices_list[ix]);
voices_list[ix] = NULL;
}
}
n_voices_list = 0;
}

void FreeVoiceList()
{//=================
for(int ix=0; ix<n_voices_list; ix++)

Loading…
Cancel
Save