diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/InlineContainer.hxx | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/comphelper/InlineContainer.hxx b/include/comphelper/InlineContainer.hxx index 023bc43f817a..384203af9f6a 100644 --- a/include/comphelper/InlineContainer.hxx +++ b/include/comphelper/InlineContainer.hxx @@ -21,7 +21,6 @@ #include <com/sun/star/uno/Sequence.hxx> -#include <vector> #include <map> #include <set> @@ -54,28 +53,6 @@ public: }; -/** Creates a vector which contains an arbitrary number of elements. - - usage: - - vector< t > aVec( MakeVector< t >( t_1 )( t_2 )...( t_n ) ); - */ -template < typename T > -class MakeVector : public ::std::vector< T > -{ -public: - explicit MakeVector(const T &a) - : ::std::vector< T >(1, a) - { - } - MakeVector &operator()(const T &a) - { - this->push_back(a); - return *this; - } -}; - - /** Creates a set which contains an arbitrary number of elements. usage: |