search for: 9d3c0d3f

Displaying 3 results from an estimated 3 matches for "9d3c0d3f".

2010 May 02
0
[LLVMdev] Compiling LLVM 2.7 with Visual Studio 2010.
On 2 May 2010 00:53, Tom van Dijck <llvm at tomvandijck.com> wrote: > The problem seems to be a much larger issue with the Visual Studio 2010 C++ > Compiler and not really related to clang/llvm. The following snippet of code > does NOT compile in 2010.. > > #include <vector> > int main(int argc, char* argv[]) > { >     std::pair<int, void*> mypair(0,
2010 May 02
2
[LLVMdev] Compiling LLVM 2.7 with Visual Studio 2010.
...0x: https://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair?wa=wsignin1.0#tabs Tom. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100501/9d3c0d3f/attachment.html>
2010 May 02
2
[LLVMdev] Compiling LLVM 2.7 with Visual Studio 2010.
Sorry for just talking to myself here, just trying to keep people in the loop on my findings. The problem seems to be a much larger issue with the Visual Studio 2010 C++ Compiler and not really related to clang/llvm. The following snippet of code does *NOT *compile in 2010.. #include <vector> int main(int argc, char* argv[]) { std::pair<int, void*> mypair(0, NULL); return 0; }