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.

Possible Duplicate:
Initializing a static std::map<int, int> in C++

I this kind of map:

{'V', 'O'}
{'v', 'о'}
{'H', 'В'}
{'h', 'в'}
{'W', 'Ш'}
{'w', 'ш'}

But in VS 2005, when I run for

const static std::map<char, wchar_t> mapDimLetters =
{
    {'V', 'O'},
    {'v', 'о'},
    {'H', 'В'},
    {'h', 'в'},
    {'W', 'Ш'},
    {'w', 'ш'},
}

test

error C2552: 'mapDimLetters' : non-aggregates cannot be initialized with initializer list
1>        'std::map<_Kty,_Ty>' : Types with a base are not aggregate
1>        with
1>        [
1>            _Kty=char,
1>            _Ty=wchar_t
1>        ]
error C2078: too many initializers

How can I fix it? Or what is the best way to define map with constant known beforehand values in the most efficient way?

share|improve this question
A whole load of duplicates. – Lightness Races in Orbit Feb 10 '12 at 11:02
1  
Have a look here: stackoverflow.com/questions/138600/… – Nick Feb 10 '12 at 11:03
Hey have a look at this stackoverflow question [1]: stackoverflow.com/questions/2636303/… – fizzbuzz Feb 10 '12 at 11:07

marked as duplicate by Nick, Lightness Races in Orbit, Björn Pollex, KillianDS, spraff Feb 10 '12 at 11:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Why don't you use boost assign?

#include <map>
#include "boost/assign.hpp"
using namespace boost::assign;


const std::map<char, wchar_t> mapDimLetters = map_list_of 
      ('V','O')
      ('v','o')
      ('H','B')
      ('h','b');
share|improve this answer
I would love to, I can't – Ypsilon IV Feb 10 '12 at 11:06
Come on! This is an exact duplicate of stackoverflow.com/questions/138600/… – Nick Feb 10 '12 at 11:06
@YpsilonIV: Why not? – Armen Tsirunyan Feb 10 '12 at 11:07

Not the answer you're looking for? Browse other questions tagged or ask your own question.