1
1

- Value pointed to is not modified (file-name / FILE-macro),

getting rid of compiler-warning when compiled with trunk of g++:
   when doing --enable-debug:
  ../../../../orte/class/orte_pointer_array.h:128: warning: deprecated
  conversion from string constant to 'char*'

This commit was SVN r16656.
Этот коммит содержится в:
Rainer Keller 2007-11-05 13:03:35 +00:00
родитель 005652c9d4
Коммит 9045c5a6f1
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -60,7 +60,7 @@ struct opal_mutex_t {
#if !OMPI_HAVE_THREAD_SUPPORT && OMPI_ENABLE_DEBUG
int m_lock_debug;
char *m_lock_file;
const char *m_lock_file;
int m_lock_line;
#endif

Просмотреть файл

@ -42,7 +42,7 @@ struct opal_mutex_t {
#if !OMPI_HAVE_THREAD_SUPPORT && OMPI_ENABLE_DEBUG
int m_lock_debug;
char *m_lock_file;
const char *m_lock_file;
int m_lock_line;
#endif
};