i have declared a map in map but i cannot access it,
this is the declaration: map<map<string,int>,string> op;
no errors in declaration. but when i try to access it for example
op["text 1"][0] = "text 2";
'[' have red underline saying "[" no operator found which takes a right-hand operand of type 'const char [9]' (or there is no acceptable conversion)
whats wrong?