User profile: naraku9333

User info
User name:naraku9333
Name:Sean Vogel
Location:Elgin IL
Website:http://home.comcast.net/~svogel76/
Bio:My reason for living:
http://www.flickr.com/photos/mikal_rafael/

My projects:
http://github.com/naraku9333

http://bitbucket.org/naraku9333
History
Joined:
Number of posts:2163
Latest posts:

what means "Process terminated with status -1073741819"?
The link Necip posted is to a BSOD error code and is most likely unrelated to your error. I would gu...

Add elements to std::list using iterator
This line [code]students.push_back ( sect.students[ it ] );[/code] doesn't make sense, you are using...

Qmake on Windows
For unit testing I don't think a new configuration is the correct way to go, but rather a separate p...

Qmake on Windows
If you want to create a new configuration you can do so with the configuration manager https://msdn....

Using push_back() with vector causing segmentation fault
You are trying to modify a constant object. Perhaps you mean to call push_back on this->sections?