freebsd-ports/textproc/latte/files/patch-latte-vector.h
Kirill Ponomarev f50de67ab5 - Update to version 2.1
PR:		ports/64473
Submitted by:	Ports Fury
2004-03-19 19:50:52 +00:00

19 lines
515 B
C++

--- latte-vector.h.orig Fri Oct 22 13:04:00 1999
+++ latte-vector.h Fri Mar 19 01:17:52 2004
@@ -28,14 +28,14 @@
#ifdef HAVE_VECTOR_RESIZE
template <class T>
-class latte_vector : public vector<T> {
+class latte_vector : public std::vector<T> {
// empty (I wish there were template typedefs)
};
#else // HAVE_VECTOR_RESIZE
template <class T>
-class latte_vector : public vector<T> {
+class latte_vector : public std::vector<T> {
public:
void resize(size_t n, const T &obj) {
if (n > size())