From 07e718c343f0e3cde63d3bed94cdba56c222007d Mon Sep 17 00:00:00 2001 From: graehl Date: Tue, 20 Jul 2010 21:15:07 +0000 Subject: google::dense_hash_map git-svn-id: https://ws10smt.googlecode.com/svn/trunk@341 ec762483-ff6d-05da-a07a-a48fb63a330f --- decoder/dict.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'decoder/dict.h') diff --git a/decoder/dict.h b/decoder/dict.h index 82e8c0c0..dd433c3e 100644 --- a/decoder/dict.h +++ b/decoder/dict.h @@ -1,8 +1,11 @@ #ifndef DICT_H_ #define DICT_H_ +#include "config.h" + #include #include + #ifdef HAVE_SPARSEHASH # include #else @@ -10,7 +13,6 @@ #endif #include #include - #include #include "wordid.h" @@ -18,9 +20,9 @@ class Dict { typedef #ifdef HAVE_SPARSEHASH - std::tr1::unordered_map -#else google::dense_hash_map +#else + std::tr1::unordered_map #endif > Map; -- cgit v1.2.3