aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/vespa/vespalib/stllike/lrucache_map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/stllike/lrucache_map.h b/staging_vespalib/src/vespa/vespalib/stllike/lrucache_map.h
index 128a7dc9424..07137263cf6 100644
--- a/staging_vespalib/src/vespa/vespalib/stllike/lrucache_map.h
+++ b/staging_vespalib/src/vespa/vespalib/stllike/lrucache_map.h
@@ -3,6 +3,7 @@
#include <vespa/vespalib/stllike/hashtable.h>
#include <vespa/vespalib/stllike/hash_fun.h>
+#include <vespa/vespalib/stllike/select.h>
#include <vector>
namespace vespalib {
@@ -29,7 +30,7 @@ struct LruParam
{
typedef LinkedValue<V> LV;
typedef std::pair< K, LV > value_type;
- typedef std::_Select1st< value_type > select_key;
+ typedef vespalib::Select1st< value_type > select_key;
typedef K Key;
typedef V Value;
typedef H Hash;