Remove typename prefix from non-dependent type alias

I think VS is predantic but actually right here.

References:
- http://eel.is/c++draft/namespace.udecl#19
This commit is contained in:
Daniel J. Hofmann
2016-05-03 11:48:33 +02:00
parent 30af544919
commit 5517ee334f
3 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ namespace osrm
namespace storage
{
using RTreeLeaf = typename engine::datafacade::BaseDataFacade::RTreeLeaf;
using RTreeLeaf = engine::datafacade::BaseDataFacade::RTreeLeaf;
using RTreeNode =
util::StaticRTree<RTreeLeaf, util::ShM<util::Coordinate, true>::vector, true>::TreeNode;
using QueryGraph = util::StaticGraph<contractor::QueryEdge::EdgeData>;