~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.cc

  • Committer: Monty Taylor
  • Date: 2008-12-01 17:53:42 UTC
  • mto: This revision was merged to the branch mainline in revision 637.
  • Revision ID: monty@bitters-20081201175342-hcvfaecqmljhv86g
Fixed Sun Studio warnings in mysys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
494
494
            if (*byte_ptr & (1 << k))
495
495
              return (i*32) + (j*8) + k;
496
496
          }
497
 
          assert(0);
498
497
        }
499
498
      }
500
 
      assert(0);
501
499
    }
502
500
  }
503
501
  return MY_BIT_NONE;
528
526
            if (!(*byte_ptr & (1 << k)))
529
527
              return (i*32) + (j*8) + k;
530
528
          }
531
 
          assert(0);
532
529
        }
533
530
      }
534
 
      assert(0);
535
531
    }
536
532
  }
537
533
  return MY_BIT_NONE;