Changeset 16127


Ignore:
Timestamp:
09/12/13 09:54:17 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing warning about char*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/dakota_core.cpp

    r15771 r16127  
    177177                // Instantiate/initialize the parallel library and problem description
    178178                // database objects.
    179                 Dakota::ParallelLibrary parallel_lib("serial"); //use our own ISSM Dakota library mode constructor, which only fires up Dakota on CPU 0.
     179                char* dakotamode=xNew<char>(strlen("serial")+1);
     180                xMemCpy<char>(dakotamode,"serial",strlen("serial")+1);
     181                Dakota::ParallelLibrary parallel_lib(dakotamode); //use our own ISSM Dakota library mode constructor, which only fires up Dakota on CPU 0.
    180182                Dakota::ProblemDescDB problem_db(parallel_lib);
     183                xDelete<char>(dakotamode);
    181184
    182185                // Manage input file parsing, output redirection, and restart processing
Note: See TracChangeset for help on using the changeset viewer.