From: Hans-Bernhard Broeker Newsgroups: comp.os.msdos.djgpp Subject: Re: scan() in c++ Date: 28 Jan 2003 12:34:25 GMT Organization: Aachen University of Technology (RWTH) Lines: 31 Message-ID: References: <200301280550 DOT h0S5ohlA017021 AT chac DOT its DOT uow DOT edu DOT au> NNTP-Posting-Host: acp3bf.physik.rwth-aachen.de X-Trace: nets3.rz.RWTH-Aachen.DE 1043757265 15078 137.226.32.75 (28 Jan 2003 12:34:25 GMT) X-Complaints-To: abuse AT rwth-aachen DOT de NNTP-Posting-Date: 28 Jan 2003 12:34:25 GMT Originator: broeker@ To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Y Chen wrote: > #include > #include > //#include > using namespace std; > //#include > #include > //#include > #include > #include // for memory error handling This is a horrible mess. You're mixing new-style C++ standard headers (without .h) and old-style ones (with .h). And on top of all that, you throw C headers into the mix. While this may still work, if you're lucky, it's a rather certain path to confusion. Please try to avoid that. > #include "LSTM.h" The last time you posted this, you were reminded that it's quite impossible for anybody to help you if you don't cut your problem down so you can post a reproducible example. You didn't do that: we still cannot know what is in that "LSTM.h" of yours. You're just annoying people, this way. Please stop it. -- Hans-Bernhard Broeker (broeker AT physik DOT rwth-aachen DOT de) Even if all the snow were burnt, ashes would remain.