From 7aa2922ab1f4ff600bd6854cdebb4be6d3b06fa5 Mon Sep 17 00:00:00 2001 From: "Cheng H. Lee" Date: Fri, 4 Jan 2019 21:40:36 -0600 Subject: [PATCH] Tweak `unordered_map.hpp` include for newer Boost releases Add conditional to deal with the fact that the `tr1` subdirectory was deprecated and removed in Boost 1.65.0. Fixes cole-trapnell-lab/cufflinks#105. --- src/biascorrection.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/biascorrection.h b/src/biascorrection.h index 962426d7..ad03333e 100644 --- a/src/biascorrection.h +++ b/src/biascorrection.h @@ -15,7 +15,11 @@ #include #include #include +#if BOOST_VERSION >= 016500 +#include +#else #include +#endif #include #include "common.h"