Added const to the aguement lists.
This commit is contained in:
parent
6f190b568d
commit
1cb7a2883b
2 changed files with 4 additions and 4 deletions
|
|
@ -564,8 +564,8 @@ namespace ctml {
|
|||
}
|
||||
|
||||
|
||||
int convert_ck(const char* in_file, const char* db_file,
|
||||
const char* tr_file, const char* out_file, const char* id_tag) {
|
||||
int convert_ck(const char * const in_file, const char * const db_file,
|
||||
const char * const tr_file, const char * const out_file, const char* const id_tag) {
|
||||
ckr::CKReader r;
|
||||
r.validate = true;
|
||||
//int i=1;
|
||||
|
|
|
|||
|
|
@ -48,8 +48,8 @@ namespace ctml {
|
|||
void ck2ctml(string idtag, ckr::CKReader& r,
|
||||
XML_Node& root);
|
||||
|
||||
int convert_ck(const char* in_file, const char* db_file,
|
||||
const char* tr_file, const char* out_file, const char* id_tag);
|
||||
int convert_ck(const char * const in_file, const char * const db_file,
|
||||
const char * const tr_file, const char * const out_file, const char * const id_tag);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue