Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c2d2b521
Kaydet (Commit)
c2d2b521
authored
May 22, 2013
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Seems Apple's Clang has C++11 fully working rvalue references only with libc++
Change-Id: Iad3f984722be648a64490976933e9b2c2b950bdc
üst
ed74575b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
UnpackedTarball_boost.mk
boost/UnpackedTarball_boost.mk
+1
-0
boost.std.move.patch
boost/boost.std.move.patch
+20
-0
No files found.
boost/UnpackedTarball_boost.mk
Dosyayı görüntüle @
c2d2b521
...
@@ -40,6 +40,7 @@ boost_patches += boost_1_44_0-gcc4.8.patch
...
@@ -40,6 +40,7 @@ boost_patches += boost_1_44_0-gcc4.8.patch
boost_patches += boost.4874.patch
boost_patches += boost.4874.patch
boost_patches += boost.loplugin.patch
boost_patches += boost.loplugin.patch
boost_patches += boost.std.move.patch
boost_patches += boost.wundef.patch
boost_patches += boost.wundef.patch
boost_patches += boost.wshadow.patch
boost_patches += boost.wshadow.patch
...
...
boost/boost.std.move.patch
0 → 100644
Dosyayı görüntüle @
c2d2b521
--- foo/foo/foo/boost/config/compiler/clang.hpp
+++ foo/foo/foo/boost/config/compiler/clang.hpp
@@ -8,6 +8,8 @@
// Clang compiler setup.
+#include <utility>
+
#if !__has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS)
# define BOOST_NO_EXCEPTIONS
#endif
@@ -108,7 +108,7 @@
# define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
#endif
-#if !__has_feature(cxx_rvalue_references)
+#if !__has_feature(cxx_rvalue_references) || (defined(__APPLE__) && !defined(_LIBCPP_VERSION))
# define BOOST_NO_CXX11_RVALUE_REFERENCES
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment