search for: c2228

Displaying 6 results from an estimated 6 matches for "c2228".

Did you mean: 2228
2005 Aug 04
2
Next swig problem
After getting past the icon problem I ran into my next problem: SpinCtrl.cpp src/SpinCtrl.cpp(1141) : error C2065: ''cWxSpinCtrl'' : undeclared identifier src/SpinCtrl.cpp(1141) : error C2228: left of ''.klass'' must have class/struct/union type src/SpinCtrl.cpp(1147) : error C2371: ''cWxSpinCtrl'' : redefinition; different basic types ... The reason for this is the way it trying to use something before declaring it: extern "C" void PostIni...
2009 Jan 29
2
[LLVMdev] [PATCH] Build fails on windows with VC2009
Hi everybody, I just updated to the latest svn trunk version, but now the code does not compile anymore. It trows an error in "f:\dev\llvm\lib\system\Win32/DynamicLibrary.inc(159) : error C2228: left of '.find' must have class/struct/union". Below you can find the small patch which makes the compiler happy again :-) Sincerely yours Marius Wachtler ---------------------------------------- Index: lib/System/Win32/DynamicLibrary.inc ==========================================...
2009 Jan 29
0
[LLVMdev] [PATCH] Build fails on windows with VC2009
On Jan 29, 2009, at 10:35 AM, Marius Wachtler wrote: > Hi everybody, > > I just updated to the latest svn trunk version, but now the code > does not compile anymore. > It trows an error in "f:\dev\llvm\lib\system\Win32/ > DynamicLibrary.inc(159) : error C2228: left of '.find' must have > class/struct/union". Oops, sorry about that, fixed, please verify! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090126/072886.html -Chris
2004 Nov 05
0
[LLVMdev] Re: LLVM Visual Studio Project files
...mpiled header files also? Not that it necessarily does it in even remotely the same way... The build finally gets to Fibonacci and fails with: c:\llvm\examples\Fibonacci\fibonacci.cpp(111) : error C2065: 'args' : undeclared identifier c:\llvm\examples\Fibonacci\fibonacci.cpp(111) : error C2228: left of '.IntVal' must have class/struct/union type I don't how this compiles with gcc. "args" is mispelled. Should be "Args". Patch attached for this also. Also, the llvm.suo file should not be in the repository. This has per-user configuration settings for V...
2004 Nov 05
2
[LLVMdev] Re: LLVM Visual Studio Project files
Like I said, it is in my path. That's not enough. I'd be happy if Morten chimed in with any suggestions as to how he got it to work. On Thu, 04 Nov 2004 18:45:18 -0800 Reid Spencer <reid at x10sys.com> wrote: > Two suggestions: > > 1. m4 might be located by your PATH variable. > 2. Talk to Morten Ofstad about how he got it to work. > > Reid. > > On
2004 Nov 05
3
[LLVMdev] Re: LLVM Visual Studio Project files
...putting as little into #includes as possible, instead of relying on PCH. > The build finally gets to Fibonacci and fails with: > > c:\llvm\examples\Fibonacci\fibonacci.cpp(111) : error C2065: 'args' : undeclared identifier > c:\llvm\examples\Fibonacci\fibonacci.cpp(111) : error C2228: left of '.IntVal' must have class/struct/union type > > I don't how this compiles with gcc. "args" is mispelled. Should be > "Args". Patch attached for this also. This was a transient bug in CVS that you must have just been unlucky to get, sorry about t...