Removed references to tr1 now that c++11 works

This commit is contained in:
Anonymous
2014-01-23 09:28:13 -07:00
parent e6431a9fd4
commit 210bdb91d8
56 changed files with 198 additions and 205 deletions
@@ -13,7 +13,7 @@
#include "sharedUtility/DataTableCell.h"
#include <map>
#include <tr1/unordered_map>
#include <unordered_map>
//----------------------------------------------------------------------------
@@ -15,7 +15,7 @@
#include <string>
#include <vector>
#include <tr1/unordered_map>
#include <unordered_map>
class Iff;
@@ -84,7 +84,7 @@ private:
void buildColumnIndexMap();
typedef std::vector<const DataTableColumnType *> DataTableColumnTypeVector;
typedef std::tr1::unordered_map<std::string /*column name*/, int /*column index*/> ColumnIndexMap;
typedef std::unordered_map<std::string /*column name*/, int /*column index*/> ColumnIndexMap;
int m_numRows;
int m_numCols;
@@ -24,7 +24,7 @@
#include <algorithm>
#include <map>
#include <vector>
#include <tr1/unordered_map>
#include <unordered_map>
//===================================================================