소스 검색

fix(tuple): make tuple copy & move ctor. constexpr

greatbridf 1 년 전
부모
커밋
15063be59a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      gblibstdc++/include/tuple

+ 2 - 2
gblibstdc++/include/tuple

@@ -257,8 +257,8 @@ public:
     
     // TODO: std::pair constructors
 
-    tuple(const tuple&) = default;
-    tuple(tuple&&) = default;
+    constexpr tuple(const tuple&) = default;
+    constexpr tuple(tuple&&) = default;
 
     constexpr tuple& operator=(const tuple& other) = default;
     constexpr tuple& operator=(tuple&& other) = default;