From: Jakob Stoklund Olesen Date: Sat, 20 Nov 2010 01:24:43 +0000 (+0000) Subject: Fix old GCC build error. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=487a5b786f7f70c9ed71dadbfcd03a918e5b0ea1;p=oota-llvm.git Fix old GCC build error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119884 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/IntervalMap.h b/include/llvm/ADT/IntervalMap.h index 3f71e721f71..ccc33327ffb 100644 --- a/include/llvm/ADT/IntervalMap.h +++ b/include/llvm/ADT/IntervalMap.h @@ -1141,7 +1141,7 @@ protected: Leaf &treeLeaf() const { assert(branched() && path.size() == map->height); - return path.back().first.get(); + return path.back().first.template get(); } unsigned treeLeafSize() const { assert(branched() && path.size() == map->height);