From: Eduardo Davila Date: Tue, 26 Sep 2017 19:49:51 +0000 (+0200) Subject: #3174 BBTK Bug New Normal - boost in fedore 26 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=bbtk.git;a=commitdiff_plain;h=16993e9f411c62e9a73d13c40f3748bdd232ce09 #3174 BBTK Bug New Normal - boost in fedore 26 --- diff --git a/kernel/src/bbtkObject.h b/kernel/src/bbtkObject.h index 811c0b6..c2d9e9a 100644 --- a/kernel/src/bbtkObject.h +++ b/kernel/src/bbtkObject.h @@ -105,7 +105,7 @@ namespace bbtk { if (s->mThisPointer.lock()) { - boost::shared_ptr p = s->GetThisPointer(); + boost::shared_ptr p = s->template GetThisPointer(); if (!lock) s->mThisPointerLocked.reset(); return p; } @@ -125,7 +125,7 @@ namespace bbtk { if (s->mThisPointer.lock()) { - boost::shared_ptr p = s->GetThisPointer(); + boost::shared_ptr p = s->template GetThisPointer(); if (!lock) s->mThisPointerLocked.reset(); return p; }