Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: CG111
  • Order by date
  1. CG111

    Error in compiling C++ code on HP-UX ver 11

    Well the version of the compiler we are using is old, so it did not work without the typename. However, I managed to find a workaround by splitting the definition in two parts. The original code was: typedef typename std::list<Sink>::iterator ListSinkIterator; With the following it compiled...
  2. CG111

    Error in compiling C++ code on HP-UX ver 11

    Hi i am trying to compile this C++ code using the aCC compiler version 3.33 on HP-UX ver 11. This same code is working on Solaris and AIX. The code snippet is: typedef typename std::list<Sink>::iterator ListSinkIterator; for(ListSinkIterator i = m_Sinks.begin(); i != m_Sinks.end(); i++) {...
  3. CG111

    Error in compiling C++ code on HP-UX ver 11

    Hi i am trying to compile this C++ code using the aCC compiler version 3.33 on HP-UX ver 11. This same code is working on Solaris and AIX. The code snippet is: typedef typename std::list<Sink>::iterator ListSinkIterator; for(ListSinkIterator i = m_Sinks.begin(); i != m_Sinks.end(); i++) {...

Part and Inventory Search

Back
Top