Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why I cant insert like here?

#include <map>

struct something {

} some_object;

typedef std::map<std::string, something*> list;
typedef std::pair<std::string, something*> pair;

int main()
{
    list l;
    pair p("abc", &some_object); // working fine!!!
    l.insert(p); // 17 errors

    return 0;
}

visual studio give me many errors and I dont understand anything of them.. the first one is

error C2784: 'bool std::operator <(const std::_Tree<_Traits> &,const std::_Tree<_Traits> &)' : could not deduce template argument for 'const std::_Tree<_Traits> &' from 'const std::string'

I can post more but I don't want to spam here.. thanks a lot for your help

share|improve this question
You've hit upon one of my pet hates by using "cant" rather than "can't". "cant" is a word in its own right and has a completely different meaning to cannot: dictionary.reference.com/browse/cant. – Richard Corden Aug 4 '09 at 8:07

2 Answers

up vote 3 down vote accepted

You need to

#include <string>
share|improve this answer
wow ... so fast, and so stupid mistake.. i didnt realize this mistake.. but why 17 errors for this simple thing ? :S – Jamal Aug 3 '09 at 19:04
I'm more surprised that it let the several other references to std::string compile before complaining about that one... – Tyler McHenry Aug 3 '09 at 19:05
Template errors cascade. If it cannot do operator< on a string, then it cannot do X on Y, then Y on Z, etc... – GManNickG Aug 3 '09 at 19:08
Hm, gcc borks on line 7 with: "string is not a member of std". A lot clearer. – pmr Aug 3 '09 at 19:41

I would change this line:

typedef std::pair<std::string, something*> pair;

You are relaying on an implementation detail. Are you sure this wil always be true for all future version of the library? Tightly coupling your code like that is a bad idea.

Try this:

typedef list::value_type pair;

PS. 'list' would not be my first choice for the name of a type I put in the global namespace. Either put it in your own namespace or call it 'MyList'.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.