X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=typing%2Fstringitem.c;h=d39908b97a0e9b065e297449c6d60221a31ac84a;hb=6c8c48c0f9dff2154a82f6960d83a706abd523a0;hp=ee8f2cba74695f39f16faf47eb8aaa4facd3d9cf;hpb=bf886807c380152f6798f68965cc1cd7536bd8c5;p=rrq%2Frrqmisc.git diff --git a/typing/stringitem.c b/typing/stringitem.c index ee8f2cb..d39908b 100644 --- a/typing/stringitem.c +++ b/typing/stringitem.c @@ -12,6 +12,7 @@ * the hashcode index. */ static unsigned long stringitem_hashcode(void *this,void *key) { + (void)this; return HashVector_hashcode( (unsigned char*)key, strlen( (char*)key ) ); } @@ -20,6 +21,7 @@ static unsigned long stringitem_hashcode(void *this,void *key) { * given key or not. */ static int stringitem_haskey(void *this,void *item,void *key) { + (void)this; return strcmp( item, key ) == 0; } @@ -28,6 +30,7 @@ static int stringitem_haskey(void *this,void *item,void *key) { * the arity and schema. */ static void *stringitem_itemkey(void *this,void *item) { + (void)this; return item; } @@ -36,6 +39,7 @@ static void *stringitem_itemkey(void *this,void *item) { * callback function to reclaim temporary allocation. */ static void stringitem_releasekey(void *this,void *key) { + (void)this; (void)key; } /** @@ -43,6 +47,7 @@ static void stringitem_releasekey(void *this,void *key) { * a character buffer. */ static int stringitem_tostring(void *this,void *item,char *buffer,int limit) { + (void)this; if ( item ) { return snprintf( buffer, limit, "\"%s\"", (char*) item ); }