Board index » cppbuilder » Re: Compiler error
Remy Lebeau (TeamB)
![]() CBuilder Developer |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
Re: Compiler error2006-02-16 08:14:12 AM cppbuilder114 "Steven" < XXXX@XXXXX.COM >wrote in message QuoteHow would I proceed in fixing this error? Synchronize(&DoRelayProgress); Gambit |
John Grabner
![]() CBuilder Developer |
2006-02-16 08:25:36 AM
Re:Re: Compiler error
Steven wrote:
QuoteHow would I proceed in fixing this error? | Add & here. John. |
Steven
![]() CBuilder Developer |
2006-02-16 09:02:57 AM
Re:Re: Compiler error
Thanks Guys,
I must be reading the wrong information somewhere, I never did notice where that was mentioned. Steven {smallsort} |
David Erbas-White
![]() CBuilder Developer |
2006-02-16 09:27:40 AM
Re:Re: Compiler error
Steven wrote:
QuoteThanks Guys, documentation is needed for the product... David Erbas-White |
David Dean
![]() CBuilder Developer |
2006-02-17 12:24:54 AM
Re:Re: Compiler error
In article < XXXX@XXXXX.COM >,
David Erbas-White < XXXX@XXXXX.COM >wrote: QuoteIt was mentioned in the b.p.c.v.c.u group, by Remy and John (<G>). -- -David Nihil curo de ista tua stulta superstitione. |
Hari Narayanan
![]() CBuilder Developer |
2007-01-10 01:13:35 PM
Re:Re: Compiler error
Whenever i compile my ASP.NET forms(C# Code behind), i get the following compiler error message as "De{*word*81} Assertion Failure:"ioFP" in...\win32src\pefile.cpp at line 660 Continue exection?". Then 'the page cannot be display' message is displayed and the application close automatically.
Please anyone help me |
Sabetay Toros
![]() CBuilder Developer |
2007-03-08 03:53:46 PM
Re:Re: Compiler error
The following code compiles without any error. But if try to change the line
int i = 0; with for (int i=0; i<1; ++i) Any ideas the compiler is giving the following error. [C++ Error] RadyeManager.cpp(284): E2451 Undefined symbol 'Er' //--------------------------------------------------------------------------- bool __fastcall TRadyeManager::Cozum() { try { Screen->Cursor = crHourGlass; int i = 0; // auto_ptr<TSonluElemanCozum>Sec(new TSonluElemanCozum(this,i)); Screen->Cursor = crDefault; FormYyp->TBRapor->Enabled = true; RaporGoster(); return false; } catch(const ProjeException& Er) { // Compiler is complaining in this line Screen->Cursor = crDefault; // HataGoster(); Application->ShowException(const_cast<ProjeException*> (&Er)); } return true; } |
Sabetay Toros
![]() CBuilder Developer |
2007-03-08 04:44:35 PM
Re:Re: Compiler error
Sabetay Toros yazmış:
Quote
for(int i=0; i < 1; ++i) { .. auto_ptr<TSonluElemanCozum>Sec( new TSonluElemanCozum(this,i)); ... } Now it is okey. I'm using BCB 6. Sabetay |
Vaclav Cechura
![]() CBuilder Developer |
2007-03-22 01:07:25 AM
Re:Re: Compiler error
Sabetay Toros < XXXX@XXXXX.COM >wrote:
Quote>bool __fastcall TRadyeManager::Cozum() body (including declaration statement) even though it has little or no practical meaning. The declared object lives only in the scope of the for statement body and gets constructed and destructed with every loop (only once in your example). That is why your TSonluElemanCozum object gets immediately deleted after it has been created (deleted through the destructor of Sec) Vaclav |
Old Wolf
![]() CBuilder Developer |
2007-03-22 09:34:39 AM
Re:Re: Compiler error
On Mar 22, 5:07 am, "Vaclav Cechura" < XXXX@XXXXX.COM >wrote:
Quote>If I add begin and end braces to the for line the error for (int i = 0; i != 1; ++i) int y; |
Victor
![]() CBuilder Developer |
2007-10-28 07:31:16 AM
Re:Re: Compiler error
How can I find the meaning of error messages given by Borland Command Line Compiler ? I'm having trouble locating the problem with an error like this one "Functions with exception specifications are not expanded inline"...
|
Ed Mulroy [TeamB]
![]() CBuilder Developer |
2007-10-28 09:51:10 AM
Re:Re: Compiler error
That is not an error. It is a warning.
The keyword 'inline' and the implied inlilne for class or structure member functions whose code is given in the body of the class or structure declaration is a request or suggestion to the compiler. The warning is to inform you that while you expected the function to be inlined it will not be. Not all items that can be programmed can be efficiently inlined by the compiler. Exceptions and inline assembly are examples of items that cannot be inlined. See my reply to your other message explaining the correct place to post messages concerning the C++ Builder product. . Ed QuoteVictor wrote in message |