search for: __w64

Displaying 4 results from an estimated 4 matches for "__w64".

Did you mean: __u64
2005 Mar 10
2
[LLVMdev] Errors building llvm with Visual Studio in Debug mode
..._Ty=llvm::Value *, _Ty1=`anonymous-namespace'::Relation, _Ty2=llvm::Value * ] c:\Program Files\Microsoft Visual Studio 8\VC\include\algorithm(1397) : see reference to function template instantiation '_FwdIt std::_Lower_bound<_FwdIt,_Ty,__w64 int>(_FwdIt,_FwdIt,const _Ty &,_Diff *)' being compiled with [ _FwdIt=std::_Vector_iterator<`anonymous-namespace'::Relation,std::allocator<`anonymous-namespace'::Relation>>, _Ty=llvm::Value *, _Diff=__w64 int...
2005 Mar 10
0
[LLVMdev] Errors building llvm with Visual Studio in Debug mode
...alue *, > _Ty1=`anonymous-namespace'::Relation, > _Ty2=llvm::Value * > ] > c:\Program Files\Microsoft Visual Studio >8\VC\include\algorithm(1397) : see reference to function template >instantiation '_FwdIt std::_Lower_bound<_FwdIt,_Ty,__w64 >int>(_FwdIt,_FwdIt,const _Ty &,_Diff *)' being compiled > with > [ > _FwdIt=std::_Vector_iterator<`anonymous-namespace'::Relation,std::allocator<`anonymous-namespace'::Relation>>, > _Ty=llvm::Value *, >...
2015 Apr 26
3
[LLVMdev] How to compile a simple C program with clang on Windows 8.1?
...cluded from c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\stdio.h:20: In file included from c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\crtdefs.h:74: c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\vadefs.h:50:9: error:       unknown type name '__w64' typedef _W64 unsigned int   uintptr_t; My questions: a) Am I referring to the correct C header files folder? b) Do I have to include a Windows specific include file where __w64 is defined? Many thanks in advance. Best regardsUnga -------------- next part -------------- An HTML attachment was...
2010 Apr 02
0
[LLVMdev] ssize_t definition in DataTypes.h
...on of "_w64" - http://msdn.microsoft.com/en-us/library/s04b5w00(VS.71).aspx. It's only supported on later versions of Visual Studio, so something like #if !defined(_W64) # if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300 # define _W64 __w64 # else # define _W64 # endif #endif would be needed. Regards, Michael Smith -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100401/dc25bf4b/attachment.html>