diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 75ff333e0f..b2ebf7840f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2000-03-12 21:50 GMT-5 David G. Holm + * source/compiler/harbour.y + ! Added missing ( char * ) override for C++ on line 1549. + 20000312-15:18 EST Paul Tucker * makefile.vc * standardise compile for tone.c and oemansi.c diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index 9f0a4802d3..bc16ff39f2 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -1546,7 +1546,7 @@ BOOL hb_compInclude( char * szFileName, PATHNAMES * pSearch ) hb_comp_files.pLast = pFile; #ifdef __cplusplus - yy_switch_to_buffer( ( YY_BUFFER_STATE ) ( hb_comp_buffer = yy_create_buffer( yyin, 8192 * 2 ) ) ); + yy_switch_to_buffer( ( YY_BUFFER_STATE ) ( hb_comp_buffer = ( char * ) yy_create_buffer( yyin, 8192 * 2 ) ) ); #else yy_switch_to_buffer( hb_comp_buffer = yy_create_buffer( yyin, 8192 * 2 ) ); #endif