Navigation Menu

Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
mrn_index_table_name_gen()
  • Loading branch information
kou committed Apr 10, 2012
1 parent c4c5589 commit 6c11126
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions mrn_sys.cpp
Expand Up @@ -86,14 +86,3 @@ bool mrn_hash_remove(grn_ctx *ctx, grn_hash *hash, const char *key)
}
return succeed;
}

/**
* "${table}" ==> "${table}-${index_name}"
*/
char *mrn_index_table_name_gen(const char *table_name,
const char *index_name,
char *dest)
{
snprintf(dest, MRN_MAX_PATH_SIZE, "%s-%s", table_name, index_name);
return dest;
}

0 comments on commit 6c11126

Please sign in to comment.