Fix building error in Linux

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2165 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2007-01-04 06:08:27 +00:00
parent 8d4243f1bd
commit 327bd141ad
2 changed files with 21 additions and 7 deletions

View File

@ -8,11 +8,11 @@
//** from the company.
//**
//****************************************************************************
#include "ProcessorBind.h"
#include <iostream>
#include <stdexcept>
#include <list>
#include <map>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
@ -22,7 +22,7 @@
#include <functional>
using namespace std;
typedef unsigned __int64 ulonglong_t;
typedef UINT64 ulonglong_t;
template <class T>
class CMemoryLeakChecker : public list<T*>
@ -142,7 +142,7 @@ ostream& operator << (ostream& os, const CIdentity& idRight)
<< setw(4) << (unsigned short)(idRight.m_ullId[0] >> 16) << '-'
<< setw(4) << (unsigned short)idRight.m_ullId[0] << '-'
<< setw(4) << (unsigned short)(idRight.m_ullId[1] >> 48) << '-'
<< setw(12) << (idRight.m_ullId[1] & 0xffffffffffff);
<< setw(12) << (idRight.m_ullId[1] & 0xffffffffffffULL);
}
class CInputFile : public CObjRoot