added explicit "unused" markers
authorRalph Ronnquist <ralph.ronnquist@gmail.com>
Fri, 22 Jul 2022 22:39:04 +0000 (08:39 +1000)
committerRalph Ronnquist <ralph.ronnquist@gmail.com>
Fri, 22 Jul 2022 22:39:04 +0000 (08:39 +1000)
typing/integeritem.c
typing/stringitem.c
vector/HashVector.c

index 221fb7095fce341e6fba8d974edf4c1f08d96f04..f557c3f518f5b6acca74c8f725278d949655e647 100644 (file)
@@ -10,6 +10,7 @@
  * the hashcode index.
  */
 static unsigned long integeritem_hashcode(void *this,void *key) {
+    (void)this;
     return (unsigned long) key;
 }
 
@@ -18,6 +19,7 @@ static unsigned long integeritem_hashcode(void *this,void *key) {
  * given key or not.
  */
 static int integeritem_haskey(void *this,void *item,void *key) {
+    (void)this;
     return item == key;
 }
 
@@ -26,6 +28,7 @@ static int integeritem_haskey(void *this,void *item,void *key) {
  * the arity and schema.
  */
 static void *integeritem_itemkey(void *this,void *item) {
+    (void)this;
     return item;
 }
 
@@ -34,6 +37,7 @@ static void *integeritem_itemkey(void *this,void *item) {
  * callback function to reclaim temporary allocation.
  */
 static void integeritem_releasekey(void *this,void *key) {
+    (void)this; (void)key;
 }
 
 /**
@@ -41,6 +45,7 @@ static void integeritem_releasekey(void *this,void *key) {
  * a character buffer.
  */
 static int integeritem_tostring(void *this,void *item,char *buffer,int limit) {
+    (void)this;
     return snprintf( buffer, limit, "%lld", (long long) item );
 }
 
index ee8f2cba74695f39f16faf47eb8aaa4facd3d9cf..d39908b97a0e9b065e297449c6d60221a31ac84a 100644 (file)
@@ -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 );
     }
index 7b68c59f9f3e9ded09e8e3a4151bdbf94bb120c4..19269c1a0eaec61137ee12565bcf92905ee83154 100644 (file)
@@ -78,6 +78,7 @@ void *HashVector_next(HashVector *hv,VectorIndex *index) {
 }
 
 static int capture_item(Vector *pv,unsigned long ix,void *item,void *data) {
+    (void)pv; (void)ix;
     if ( item && item != HV_HOLE ) {
        HashVector_add( (HashVector *) data, item );
     }
@@ -85,6 +86,7 @@ static int capture_item(Vector *pv,unsigned long ix,void *item,void *data) {
 }
 
 static int iter_item(unsigned long ix,void *item,void *data) {
+    (void)ix;
     if ( item && item != HV_HOLE ) {
        HashVector_add( (HashVector *) data, item );
     }