소스 검색

Removed unnecessary template parameter from std::make_pair call.

The patch was contributed from Dan Fandrich.
Tatsuhiro Tsujikawa 14 년 전
부모
커밋
533cdfa850
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      src/Triplet.h

+ 1 - 3
src/Triplet.h

@@ -141,9 +141,7 @@ public:
             typename TupleNthType<Tuple, N2>::type>
   operator()(const Tuple& tri) const
   {
-    return std::make_pair<typename TupleNthType<Tuple, N1>::type,
-                          typename TupleNthType<Tuple, N2>::type>
-      (TupleGet<N1>::get(tri), TupleGet<N2>::get(tri));
+    return std::make_pair(TupleGet<N1>::get(tri), TupleGet<N2>::get(tri));
   }
 };