Changeset 1261 for trunk/yat/statistics
- Timestamp:
- Apr 8, 2008, 4:01:33 PM (14 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/VectorFunction.cc
r1000 r1261 65 65 66 66 67 Nth_Element::Nth_Element( u_int N)67 Nth_Element::Nth_Element(size_t N) 68 68 : N_(N) {} 69 69 -
trunk/yat/statistics/VectorFunction.h
r1260 r1261 27 27 28 28 #include <vector> 29 30 #include <sys/types.h>31 29 32 30 namespace theplu { … … 109 107 /// efficient) 110 108 /// 111 Nth_Element( u_int N);109 Nth_Element(size_t N); 112 110 113 111 /// … … 117 115 118 116 private: 119 u_int N_;117 size_t N_; 120 118 }; 121 119
Note: See TracChangeset
for help on using the changeset viewer.