Changeset 14635


Ignore:
Timestamp:
04/17/13 15:11:39 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: missing include <cstring> and added const char* to TokenValue to avoid compiler warning

Location:
issm/trunk-jpl/src/c/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/ToolkitOptions.cpp

    r14633 r14635  
    99#endif
    1010
     11#include <string.h>
    1112#include "./ToolkitOptions.h"
    1213#include "../include/types.h"
     
    3334
    3435}/*}}}*/
    35 char* TokenValue(char* tokenlist,char* target){ /*{{{*/
     36char* TokenValue(char* tokenlist,const char* target){ /*{{{*/
    3637
    3738        /*output:*/
  • issm/trunk-jpl/src/c/classes/ToolkitOptions.h

    r14633 r14635  
    2727                static char* GetToolkitType(void);
    2828};
    29 char* TokenValue(char* tokenlist,char* target);
     29
     30char* TokenValue(char* tokenlist,const char* target);
    3031
    3132#endif  /* _TOOLKIT_OPTIONS_H */
Note: See TracChangeset for help on using the changeset viewer.