diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-27 21:01:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-27 23:00:45 +0000 |
commit | 7f476fea47f06a7f8cc961dd4f6595a524346fa5 (patch) | |
tree | 52d16713e5a2a5203b041f9ec82742617bd33b1c /avmedia/source/macavf | |
parent | fc95782eb39cf4974ac4b3096695eeb89008937c (diff) |
boost::unordered_map -> c++11 std::unordered_map
Change-Id: I28438000c2b0a8e6ce4f5640f861f572c0cb83c8
Diffstat (limited to 'avmedia/source/macavf')
-rw-r--r-- | avmedia/source/macavf/macavfcommon.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/avmedia/source/macavf/macavfcommon.hxx b/avmedia/source/macavf/macavfcommon.hxx index 79bf79c46649..ff4559e823d9 100644 --- a/avmedia/source/macavf/macavfcommon.hxx +++ b/avmedia/source/macavf/macavfcommon.hxx @@ -25,7 +25,7 @@ #import <AVFoundation/AVFoundation.h> #include <postmac.h> -#include <boost/unordered_map.hpp> +#include <unordered_map> #include <osl/mutex.hxx> #include <rtl/ustring.hxx> @@ -67,7 +67,7 @@ namespace avmedia { namespace macavf { class MacAVObserverHandler; } } -typedef boost::unordered_map<NSObject*,avmedia::macavf::MacAVObserverHandler*> HandlersForObject; +typedef std::unordered_map<NSObject*,avmedia::macavf::MacAVObserverHandler*> HandlersForObject; @interface MacAVObserverObject : NSObject { |