Преглед изворни кода

fix(libstdc++): make deleted addressof const T*

greatbridf пре 1 година
родитељ
комит
2d8ca9bdaa
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      gblibstdc++/include/memory

+ 1 - 1
gblibstdc++/include/memory

@@ -25,7 +25,7 @@ addressof(T& arg) noexcept
 }
 
 template <typename T>
-T* addressof(const T&&) = delete;
+const T* addressof(const T&&) = delete;
 
 } // namespace std