This is a discussion on CVS HEAD compile error within the pgsql Interfaces Pgadmin Hackers forums, part of the PostgreSQL category; --> I'm trying to compile pgadmin3, but I get this error: ../ui/frmHint.cpp:47: error: non-local variable '<anonymous struct> hintArray []' uses ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I'm trying to compile pgadmin3, but I get this error: ../ui/frmHint.cpp:47: error: non-local variable '<anonymous struct> hintArray []' uses anonymous type Any idea what's going on? ahp ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org |
| |||
| Adam H. Pendleton wrote: > I'm trying to compile pgadmin3, but I get this error: > > ./ui/frmHint.cpp:47: error: non-local variable '<anonymous struct> > hintArray []' uses anonymous type > > Any idea what's going on? DCE (Dumb Compiler Error :-) Seems we must name it. Regards, Andreas ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |
| |||
| Did you commit a fix? ahp On May 2, 2005, at 1:13 PM, Andreas Pflug wrote: > Adam H. Pendleton wrote: > >> I'm trying to compile pgadmin3, but I get this error: >> ./ui/frmHint.cpp:47: error: non-local variable '<anonymous >> struct> hintArray []' uses anonymous type >> Any idea what's going on? >> > > DCE (Dumb Compiler Error :-) > Seems we must name it. > > Regards, > Andreas > ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| |||
| Is this really a dumb compiler error? What data type is hintArray []? It needs a data type, not a name. ahp On May 2, 2005, at 1:13 PM, Andreas Pflug wrote: > Adam H. Pendleton wrote: > >> I'm trying to compile pgadmin3, but I get this error: >> ./ui/frmHint.cpp:47: error: non-local variable '<anonymous >> struct> hintArray []' uses anonymous type >> Any idea what's going on? >> > > DCE (Dumb Compiler Error :-) > Seems we must name it. > > Regards, > Andreas > > ---------------------------(end of > broadcast)--------------------------- > TIP 5: Have you checked our extensive FAQ? > > http://www.postgresql.org/docs/faq > ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org |
| ||||
| Adam H. Pendleton wrote: > Is this really a dumb compiler error? What data type is hintArray []? The data type is an unnamed struct, which your compiler won't like. It has a name now. Regards, Andreas ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
| Thread Tools | |
| Display Modes | |
|
|