STL
-
Hi all, I'm using a list"double" variable in my code. Even though I added the #include "list" to the beginning of the file, I keep getting a 'undeclared identifier' message. What's missing? Best, Ralf. ps " = angled brackets. Can't display those. ralf.riedel@usm.edu
-
Hi all, I'm using a list"double" variable in my code. Even though I added the #include "list" to the beginning of the file, I keep getting a 'undeclared identifier' message. What's missing? Best, Ralf. ps " = angled brackets. Can't display those. ralf.riedel@usm.edu
RalfPeter wrote: ps " = angled brackets. Can't display those. Sure you can. Just click on the < and > in the Formatting bar above the smileys.
"The pointy end goes in the other man." - Antonio Banderas (Zorro, 1998)
-
Hi all, I'm using a list"double" variable in my code. Even though I added the #include "list" to the beginning of the file, I keep getting a 'undeclared identifier' message. What's missing? Best, Ralf. ps " = angled brackets. Can't display those. ralf.riedel@usm.edu
Be sure to use:
using namespace std;
or use:
std::list<double>
Perl combines all the worst aspects of C and Lisp: a billion different sublanguages in one monolithic executable. It combines the power of C with the readability of PostScript. -- Jamie Zawinski
-
Be sure to use:
using namespace std;
or use:
std::list<double>
Perl combines all the worst aspects of C and Lisp: a billion different sublanguages in one monolithic executable. It combines the power of C with the readability of PostScript. -- Jamie Zawinski
-
Hi all, I'm using a list"double" variable in my code. Even though I added the #include "list" to the beginning of the file, I keep getting a 'undeclared identifier' message. What's missing? Best, Ralf. ps " = angled brackets. Can't display those. ralf.riedel@usm.edu
In order to type angle brackets in a message, use
**<**
for < and**>**
for >. These are the 'character entities' in HTML for those respective characters.
Software Zen:
delete this;