I can't for the life of me figure out what the compiler wants from me.
Can anyone experienced with compiler messages help me decipher what it wants, please? I can't even provide code bits because I've no idea whats going on.
I'm using g++-4.7 with -std=c++11
It seems it complains about SimpleMapSquare and something about it being an allocator? It's nothing like that. SimpleMapSquare is defined as:
#pragma once
namespace BlackDragonEngine
{
struct SimpleMapSquare
{
int TileID;
};
}
I wrote about 400+ lines of templated code yesterday and just tried to include the header for it in my main app and boom this happens...
I don't even know where to start...please help.
EDIT:
A search for "vector<" in my project returns this: http://i.imgur.com/g8L1l.png
I expanded the revelant files (the ones I created yesterday)
The reason I wrote so much code without testing is because I'm converting my engine from C# to C++, so the logical side is already right and I can't test incomplete code.
EDIT 2: Here are all usages of "SimpleMapSquare" http://i.imgur.com/zedkh.png
EDIT3:
Thanks to Konrad I was able to pinpoint the exact line and find the error... ignore the searches above as I forgot to include *.inl files (where the template code implementation is located)