5
5
/* */
6
6
/* COPYRIGHT: */
7
7
/* ---------- */
8
- /* (C) Copyright to the author Olivier BERTRAND 2004-2014 */
8
+ /* (C) Copyright to the author Olivier BERTRAND 2004-2015 */
9
9
/* */
10
10
/* WHAT THIS PROGRAM DOES: */
11
11
/* ----------------------- */
@@ -56,7 +56,7 @@ BLOCKFILTER::BLOCKFILTER(PTDBDOS tdbp, int op)
56
56
/* **********************************************************************/
57
57
/* Make file output of BLOCKFILTER contents. */
58
58
/* **********************************************************************/
59
- void BLOCKFILTER::Print (PGLOBAL g , FILE *f, uint n)
59
+ void BLOCKFILTER::Print (PGLOBAL, FILE *f, uint n)
60
60
{
61
61
char m[64 ];
62
62
@@ -70,7 +70,7 @@ void BLOCKFILTER::Print(PGLOBAL g, FILE *f, uint n)
70
70
/* **********************************************************************/
71
71
/* Make string output of BLOCKFILTER contents. */
72
72
/* **********************************************************************/
73
- void BLOCKFILTER::Print (PGLOBAL g , char *ps, uint z)
73
+ void BLOCKFILTER::Print (PGLOBAL, char *ps, uint z)
74
74
{
75
75
strncat (ps, " BlockFilter(s)" , z);
76
76
} // end of Print
@@ -186,7 +186,7 @@ void BLKFILARI::Reset(PGLOBAL g)
186
186
/* **********************************************************************/
187
187
/* Evaluate block filter for arithmetic operators. */
188
188
/* **********************************************************************/
189
- int BLKFILARI::BlockEval (PGLOBAL g )
189
+ int BLKFILARI::BlockEval (PGLOBAL)
190
190
{
191
191
int mincmp, maxcmp, n;
192
192
@@ -306,7 +306,7 @@ void BLKFILAR2::MakeValueBitmap(void)
306
306
/* **********************************************************************/
307
307
/* Evaluate XDB2 block filter for arithmetic operators. */
308
308
/* **********************************************************************/
309
- int BLKFILAR2::BlockEval (PGLOBAL g )
309
+ int BLKFILAR2::BlockEval (PGLOBAL)
310
310
{
311
311
#if defined(_DEBUG)
312
312
assert (Colp->IsClustered ());
@@ -428,7 +428,7 @@ void BLKFILMR2::MakeValueBitmap(void)
428
428
/* **********************************************************************/
429
429
/* Evaluate XDB2 block filter for arithmetic operators. */
430
430
/* **********************************************************************/
431
- int BLKFILMR2::BlockEval (PGLOBAL g )
431
+ int BLKFILMR2::BlockEval (PGLOBAL)
432
432
{
433
433
#if defined(_DEBUG)
434
434
assert (Colp->IsClustered ());
@@ -514,7 +514,7 @@ void BLKSPCARI::Reset(PGLOBAL g)
514
514
/* **********************************************************************/
515
515
/* Evaluate block filter for arithmetic operators (ROWID) */
516
516
/* **********************************************************************/
517
- int BLKSPCARI::BlockEval (PGLOBAL g )
517
+ int BLKSPCARI::BlockEval (PGLOBAL)
518
518
{
519
519
int mincmp, maxcmp, n, m;
520
520
@@ -605,7 +605,7 @@ BLKFILIN::BLKFILIN(PGLOBAL g, PTDBDOS tdbp, int op, int opm, PXOB *xp)
605
605
/* **********************************************************************/
606
606
/* Reset: have the sorted array reset its Bot value to -1 (bottom). */
607
607
/* **********************************************************************/
608
- void BLKFILIN::Reset (PGLOBAL g )
608
+ void BLKFILIN::Reset (PGLOBAL)
609
609
{
610
610
Arap->Reset ();
611
611
// MakeValueBitmap(); // Does nothing for class BLKFILIN
@@ -736,7 +736,7 @@ void BLKFILIN2::MakeValueBitmap(void)
736
736
/* ended string in case of string argument. This is because the ARRAY */
737
737
/* can have a different width than the char column. */
738
738
/* **********************************************************************/
739
- int BLKFILIN2::BlockEval (PGLOBAL g )
739
+ int BLKFILIN2::BlockEval (PGLOBAL)
740
740
{
741
741
if (N < 0 )
742
742
return Result; // Was set in MakeValueBitmap
@@ -909,7 +909,7 @@ int BLKFILIN2::BlockEval(PGLOBAL g)
909
909
/* **********************************************************************/
910
910
/* BLKSPCIN constructor. */
911
911
/* **********************************************************************/
912
- BLKSPCIN::BLKSPCIN (PGLOBAL g , PTDBDOS tdbp, int op, int opm,
912
+ BLKSPCIN::BLKSPCIN (PGLOBAL, PTDBDOS tdbp, int op, int opm,
913
913
PXOB *xp, int bsize)
914
914
: BLOCKFILTER(tdbp, op)
915
915
{
@@ -930,7 +930,7 @@ BLKSPCIN::BLKSPCIN(PGLOBAL g, PTDBDOS tdbp, int op, int opm,
930
930
/* **********************************************************************/
931
931
/* Reset: have the sorted array reset its Bot value to -1 (bottom). */
932
932
/* **********************************************************************/
933
- void BLKSPCIN::Reset (PGLOBAL g )
933
+ void BLKSPCIN::Reset (PGLOBAL)
934
934
{
935
935
Arap->Reset ();
936
936
} // end of Reset
0 commit comments