From 7f476fea47f06a7f8cc961dd4f6595a524346fa5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 27 Dec 2014 21:01:22 +0000 Subject: boost::unordered_map -> c++11 std::unordered_map Change-Id: I28438000c2b0a8e6ce4f5640f861f572c0cb83c8 --- avmedia/source/macavf/macavfcommon.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'avmedia/source/macavf') 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 #include -#include +#include #include #include @@ -67,7 +67,7 @@ namespace avmedia { namespace macavf { class MacAVObserverHandler; } } -typedef boost::unordered_map HandlersForObject; +typedef std::unordered_map HandlersForObject; @interface MacAVObserverObject : NSObject { -- cgit