mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-05-31 09:01:09 +00:00
Fix -Wwrite-strings warnings
deprecated conversion from string constant to ‘char*’ Constify lots of "char *".
This commit is contained in:
parent
d83cf21bde
commit
64df913412
20 changed files with 51 additions and 51 deletions
|
@ -93,8 +93,8 @@ public:
|
|||
int CurrentLine( void ) const;
|
||||
const char *CurrentFile( void ) const;
|
||||
|
||||
void Error( char *fmt, ... ) const id_attribute((format(printf,2,3)));
|
||||
void Warning( char *fmt, ... ) const id_attribute((format(printf,2,3)));
|
||||
void Error( const char *fmt, ... ) const id_attribute((format(printf,2,3)));
|
||||
void Warning( const char *fmt, ... ) const id_attribute((format(printf,2,3)));
|
||||
void DisplayInfo( void ) const;
|
||||
|
||||
bool BeginMultiFrameEvent( idEntity *ent, const idEventDef *event );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue