don't use the word 'template' as a variable name, since it's a reserved word in C++

This commit is contained in:
Jordan Lee 2011-11-12 00:16:04 +00:00
parent e0e47db352
commit 42997e4102
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ int tr_mkdir( const char * path, int permissions ) TR_GNUC_NONNULL(1);
int tr_mkdirp( const char * path, int permissions ) TR_GNUC_NONNULL(1);
/** @brief Portability wrapper for mkdtemp() that uses the system implementation if available */
char* tr_mkdtemp( char * template );
char* tr_mkdtemp( char * _template );
/**