r2168: *** empty log message ***
[ctsim.git] / include / interpolator.h
index c6a34d69792b1c43f7e04be8e67a83775225bd83..94b9b1227b0d4648f93765291ad5e732daf5fb93 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: interpolator.h,v 1.5 2001/03/30 22:09:09 kevin Exp $
+**  $Id: interpolator.h,v 1.6 2002/06/27 01:48:25 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -53,8 +53,8 @@ template<class T>
 class BilinearInterpolator {
 private:
   T** const m_ppMatrix;
-  const unsigned int m_nx;
-  const unsigned int m_ny;
+  const int m_nx;
+  const int m_ny;
 
 public:
   BilinearInterpolator (T** ppMatrix, unsigned int nx, unsigned int ny)