From b5c1c8d0bd04367e26abbcded63309b4ed5e8be3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 7 Apr 2020 19:03:14 +0300 Subject: Fix to compile with g++ 4.9 --- libbrep/package.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libbrep/package.cxx b/libbrep/package.cxx index 1b7c4f6..b985af3 100644 --- a/libbrep/package.cxx +++ b/libbrep/package.cxx @@ -117,9 +117,9 @@ namespace brep sha256sum (move (sh)) { if (stub ()) - unbuildable_reason = unbuildable_reason::stub; + unbuildable_reason = brep::unbuildable_reason::stub; else if (!internal_repository->buildable) - unbuildable_reason = unbuildable_reason::unbuildable; + unbuildable_reason = brep::unbuildable_reason::unbuildable; buildable = !unbuildable_reason; @@ -140,8 +140,8 @@ namespace brep build_constraints (move (bc)), buildable (false), unbuildable_reason (stub () - ? unbuildable_reason::stub - : unbuildable_reason::external) + ? brep::unbuildable_reason::stub + : brep::unbuildable_reason::external) { assert (!rp->internal); other_repositories.emplace_back (move (rp)); -- cgit v1.1