diff -r 0bdc24d88198 -r 98dc9f65629e src/misc/smallvec.h --- a/src/misc/smallvec.h Wed Apr 16 20:01:04 2008 +0000 +++ b/src/misc/smallvec.h Wed Apr 16 20:39:35 2008 +0000 @@ -49,6 +49,16 @@ { return &data[items]; } + + const T *Get(size_t index) const + { + return &data[index]; + } + + T *Get(size_t index) + { + return &data[index]; + } }; #endif /* SMALLVEC_H */