ScopedPointer in a Map

Is it correct that I can't use a ScopedPointer in a std::map?

E.g.:

std::map<int, ScopedPointer<SomeClass>> container;