Click here to Skip to main content
15,911,132 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: VC++ 7.0? Pin
MasterBlaster3-Jan-02 16:24
MasterBlaster3-Jan-02 16:24 
GeneralRe: VC++ 7.0? Pin
Nish Nishant3-Jan-02 16:30
sitebuilderNish Nishant3-Jan-02 16:30 
GeneralRe: VC++ 7.0? - nick query Pin
Nish Nishant3-Jan-02 16:32
sitebuilderNish Nishant3-Jan-02 16:32 
GeneralRe: VC++ 7.0? - nick query Pin
Michael P Butler4-Jan-02 1:14
Michael P Butler4-Jan-02 1:14 
GeneralSTL optimization Pin
Not Active3-Jan-02 15:03
mentorNot Active3-Jan-02 15:03 
GeneralRe: STL optimization Pin
Christian Graus3-Jan-02 15:10
protectorChristian Graus3-Jan-02 15:10 
GeneralRe: STL optimization Pin
Not Active4-Jan-02 1:18
mentorNot Active4-Jan-02 1:18 
GeneralRe: STL optimization Pin
Thomas Freudenberg4-Jan-02 1:45
Thomas Freudenberg4-Jan-02 1:45 
You are talking about arrays, but your sample uses std::list Confused | :confused:
Maybe you should change your code to following:
std::list<int> FooList()
{
    std::list<int> list;
    for(int x = 0; x < 50; x++)
        list.push_back(x);
    return list;
}


Regards
Thomas

Finally with Sonork id: 100.10453 Thömmi


Disclaimer:
Because of heavy processing requirements, we are currently using some of your unused brain capacity for backup processing. Please ignore any hallucinations, voices or unusual dreams you may experience. Please avoid concentration-intensive tasks until further notice. Thank you.

GeneralRe: STL optimization Pin
Tim Smith4-Jan-02 2:24
Tim Smith4-Jan-02 2:24 
GeneralRe: STL optimization Pin
CodeGuy4-Jan-02 2:38
CodeGuy4-Jan-02 2:38 
GeneralRe: STL optimization Pin
Tim Smith4-Jan-02 7:20
Tim Smith4-Jan-02 7:20 
GeneralRe: STL optimization Pin
Not Active4-Jan-02 9:46
mentorNot Active4-Jan-02 9:46 
GeneralRe: STL optimization Pin
Tim Smith4-Jan-02 10:13
Tim Smith4-Jan-02 10:13 
GeneralRe: STL optimization Pin
CodeGuy4-Jan-02 2:32
CodeGuy4-Jan-02 2:32 
GeneralRe: STL optimization Pin
Tim Smith4-Jan-02 7:25
Tim Smith4-Jan-02 7:25 
GeneralRe: STL optimization Pin
CodeGuy4-Jan-02 8:12
CodeGuy4-Jan-02 8:12 
GeneralRe: STL optimization Pin
Tim Smith4-Jan-02 8:53
Tim Smith4-Jan-02 8:53 
GeneralRe: STL optimization Pin
CodeGuy4-Jan-02 9:02
CodeGuy4-Jan-02 9:02 
GeneralRe: STL optimization Pin
Not Active4-Jan-02 9:47
mentorNot Active4-Jan-02 9:47 
GeneralPicture and Win 95 Pin
Matt Newman3-Jan-02 13:43
Matt Newman3-Jan-02 13:43 
GeneralRe: Picture and Win 95 Pin
Philip Patrick3-Jan-02 13:47
professionalPhilip Patrick3-Jan-02 13:47 
GeneralRe: Picture and Win 95 Pin
Matt Newman3-Jan-02 14:27
Matt Newman3-Jan-02 14:27 
GeneralAPI guide Pin
KinHei3-Jan-02 12:27
KinHei3-Jan-02 12:27 
GeneralRe: API guide Pin
Nish Nishant3-Jan-02 16:36
sitebuilderNish Nishant3-Jan-02 16:36 
GeneralRe: API guide Pin
Michael P Butler4-Jan-02 1:18
Michael P Butler4-Jan-02 1:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.