diff options
Diffstat (limited to 'Tools/CCode/Source/GenFvMap/GenFvMap.cpp')
-rw-r--r-- | Tools/CCode/Source/GenFvMap/GenFvMap.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/CCode/Source/GenFvMap/GenFvMap.cpp b/Tools/CCode/Source/GenFvMap/GenFvMap.cpp index 0ff5bd07ee..1bd7b38f54 100644 --- a/Tools/CCode/Source/GenFvMap/GenFvMap.cpp +++ b/Tools/CCode/Source/GenFvMap/GenFvMap.cpp @@ -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
|