Removed uLib::Vector

This commit is contained in:
Paolo Andreetto
2019-07-31 09:16:53 +00:00
parent 52d574e317
commit 38c61a4e9b
20 changed files with 79 additions and 81 deletions

View File

@@ -2,7 +2,6 @@
set(HEADERS
Archives.h
Array.h
Collection.h
Debug.h
Export.h
Function.h
@@ -19,8 +18,6 @@ set(HEADERS
StringReader.h
Types.h
Uuid.h
Vector.h
CommaInitializer.h
Timer.h
)

View File

@@ -29,12 +29,11 @@
#define U_CORE_DEBUG_H
//#include "ltk/ltkdebug.h"
#include <vector>
#include "Macros.h"
#include "Types.h"
#include "Mpl.h"
#include "Vector.h"
#include "SmartPointer.h"
#include <boost/any.hpp>
#include <TObject.h>
@@ -128,8 +127,8 @@ public:
}
private:
Vector<DItem> m_v;
Vector<Adapter> m_a;
std::vector<DItem> m_v;
std::vector<Adapter> m_a;
};

View File

@@ -31,7 +31,6 @@
#include <istream>
#include <algorithm>
#include "Core/Vector.h"
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
@@ -62,7 +61,7 @@ struct StringReader {
while( IsEscape(c = m_is.get()) );
if (c == str[pos] ) pos++;
else pos = 0;
}
}
}
static inline bool IsEscape(char c){

View File

@@ -29,6 +29,7 @@
#define U_CORE_UUID_H
#include <iostream>
#include <vector>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/name_generator.hpp>
@@ -36,7 +37,6 @@
#include <boost/uuid/uuid_io.hpp>
#include "Core/Mpl.h"
#include "Core/Vector.h"
#include "Core/Object.h"
@@ -127,7 +127,7 @@ public:
private:
IDGen_t gen;
Vector<RegisterEntry> m_registry;
std::vector<RegisterEntry> m_registry;
};