From 1be512580cbd092cff4ad431b58469af55eaf549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pelik=C3=A1n?= Date: Sat, 26 Aug 2017 21:53:33 +1000 Subject: [PATCH] Fix build with libc++ by disambiguating std::bitset away. (#83) --- era/restore_emitter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/era/restore_emitter.cc b/era/restore_emitter.cc index a5e714e..4faf618 100644 --- a/era/restore_emitter.cc +++ b/era/restore_emitter.cc @@ -52,7 +52,7 @@ namespace { in_writeset_ = true; era_ = era; - bits_.reset(new bitset(*md_.tm_)); + bits_.reset(new persistent_data::bitset(*md_.tm_)); bits_->grow(nr_bits, false); }