Index: vtkBitArray.h =================================================================== RCS file: /viz/home/rhand/CVSROOT/ezViz/Utilities/VTK/Common/vtkBitArray.h,v retrieving revision 1.1.1.2 diff -u -F^f -r1.1.1.2 vtkBitArray.h --- vtkBitArray.h 24 May 2005 19:58:06 -0000 1.1.1.2 +++ vtkBitArray.h 25 May 2005 13:33:24 -0000 @@ -123,7 +123,7 @@ // Get the address of a particular data index. Make sure data is allocated // for the number of items requested. Set MaxId according to the number of // data values requested. - unsigned char *WritePointer(vtkIdType id, vtkIdType number); + inline unsigned char *WritePointer(vtkIdType id, vtkIdType number); void* WriteVoidPointer(vtkIdType id, vtkIdType number) { return this->WritePointer(id, number); } void *GetVoidPointer(vtkIdType id) Index: vtkByteSwap.h =================================================================== RCS file: /viz/home/rhand/CVSROOT/ezViz/Utilities/VTK/Common/vtkByteSwap.h,v retrieving revision 1.1.1.1 diff -u -F^f -r1.1.1.1 vtkByteSwap.h --- vtkByteSwap.h 8 Feb 2005 22:02:50 -0000 1.1.1.1 +++ vtkByteSwap.h 25 May 2005 13:34:50 -0000 @@ -121,8 +121,8 @@ { vtkByteSwap::Swap4BERange((char *)i,num); }; #ifdef VTK_USE_64BIT_IDS - static void Swap4BERange(vtkIdType *i,int num) - { vtkByteSwap::Swap4BERange((char *)i,num); }; +// static void Swap4BERange(vtkIdType *i,int num) +// { vtkByteSwap::Swap4BERange((char *)i,num); }; #endif // Description: @@ -155,8 +155,8 @@ static void SwapWrite4BERange(long *i,int num, FILE *fp) { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; #ifdef VTK_USE_64BIT_IDS - static void SwapWrite4BERange(vtkIdType *i,int num, FILE *fp) - { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; +// static void SwapWrite4BERange(vtkIdType *i,int num, FILE *fp) +// { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; #endif // Description: // Swap bunch of bytes to BE. Num is the number of eight byte words to swap. @@ -190,8 +190,8 @@ static void SwapWrite4BERange(long *i,int num, ostream *fp) { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; #ifdef VTK_USE_64BIT_IDS - static void SwapWrite4BERange(vtkIdType *i,int num, ostream *fp) - { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; +// static void SwapWrite4BERange(vtkIdType *i,int num, ostream *fp) +// { vtkByteSwap::SwapWrite4BERange((char *)i,num,fp);}; #endif // Description: // Swap bunch of bytes to BE. Num is the number of eight byte words to swap.