8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:43:03 +01:00

Fix MSVC build

This commit is contained in:
skidder 2004-04-18 03:34:22 +00:00
parent ad58449c45
commit 6c9fbf8d85

View File

@ -99,6 +99,7 @@ public:
ensureCapacity(L.count); ensureCapacity(L.count);
memcpy(data, L.data, sizeof(T) * L.count); memcpy(data, L.data, sizeof(T) * L.count);
count = L.count; count = L.count;
return *this;
} }
const T& operator[](int index) const { const T& operator[](int index) const {
return getElement(index); return getElement(index);