Search found 1 match

by Zeph
Sat Nov 28, 2009 17:38
Forum: Help
Topic: Problem Compiling CEGUI Under VC10
Replies: 8
Views: 8356

Re: Problem Compiling CEGUI Under VC10

I had this very same problem around 15 minutes ago, and I found the error to be at line 702 of CEGUIMultiColumnList.cpp. d_grid[i].d_items.insert(d_grid[i].d_items.begin() + position, 0); is to be changed to d_grid[i].d_items.insert(d_grid[i].d_items.begin() + position, nullptr); In visual studio 20...

Go to advanced search