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
32c226ff
Kaydet (Commit)
32c226ff
authored
Tem 20, 2011
tarafından
Fridrich Strba
Kaydeden (comit)
Fridrich Štrba
Tem 20, 2011
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Windows build
üst
2588c768
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
1 deletion
+55
-1
makefile.mk
mdds/makefile.mk
+1
-1
mdds_0.5.3.patch
mdds/mdds_0.5.3.patch
+54
-0
No files found.
mdds/makefile.mk
Dosyayı görüntüle @
32c226ff
...
@@ -38,7 +38,7 @@ TARGET=mdds
...
@@ -38,7 +38,7 @@ TARGET=mdds
TARFILE_NAME
=
mdds_0.5.3
TARFILE_NAME
=
mdds_0.5.3
TARFILE_MD5
=
0ff7d225d087793c8c2c680d77aac3e7
TARFILE_MD5
=
0ff7d225d087793c8c2c680d77aac3e7
PATCH_FILES
=
PATCH_FILES
=
mdds_0.5.3.patch
CONFIGURE_DIR
=
CONFIGURE_DIR
=
CONFIGURE_ACTION
=
CONFIGURE_ACTION
=
...
...
mdds/mdds_0.5.3.patch
0 → 100644
Dosyayı görüntüle @
32c226ff
--- misc/mdds_0.5.3/include/mdds/mixed_type_matrix_def.inl 2011-07-13 13:26:27.000000000 -0600
+++ misc/build/mdds_0.5.3/include/mdds/mixed_type_matrix_def.inl 2011-07-20 02:02:21.164198900 -0600
@@ -216,8 +216,8 @@
// assignment to self.
return;
- size_t row_count = ::std::min(mp_storage->rows(), r.mp_storage->rows());
- size_t col_count = ::std::min(mp_storage->cols(), r.mp_storage->cols());
+ size_t row_count = (::std::min)(mp_storage->rows(), r.mp_storage->rows());
+ size_t col_count = (::std::min)(mp_storage->cols(), r.mp_storage->cols());
for (size_t i = 0; i < row_count; ++i)
for (size_t j = 0; j < col_count; ++j)
mp_storage->get_element(i, j) = r.mp_storage->get_element(i, j);
--- misc/mdds_0.5.3/include/mdds/mixed_type_matrix_storage_filled_linear.inl 2011-07-13 13:26:27.000000000 -0600
+++ misc/build/mdds_0.5.3/include/mdds/mixed_type_matrix_storage_filled_linear.inl 2011-07-20 02:02:21.179798900 -0600
@@ -354,8 +354,8 @@
}
array_type new_array(new_size, &m_init_elem);
- size_t min_rows = ::std::min(row, m_rows);
- size_t min_cols = ::std::min(col, m_cols);
+ size_t min_rows = (::std::min)(row, m_rows);
+ size_t min_cols = (::std::min)(col, m_cols);
for (size_t i = 0; i < min_rows; ++i)
{
for (size_t j = 0; j < min_cols; ++j)
@@ -612,8 +612,8 @@
}
array_type new_array(new_size, element(0.0));
- size_t min_rows = ::std::min(row, m_rows);
- size_t min_cols = ::std::min(col, m_cols);
+ size_t min_rows = (::std::min)(row, m_rows);
+ size_t min_cols = (::std::min)(col, m_cols);
for (size_t i = 0; i < min_rows; ++i)
{
for (size_t j = 0; j < min_cols; ++j)
--- misc/mdds_0.5.3/include/mdds/point_quad_tree.hpp 2011-07-13 13:26:27.000000000 -0600
+++ misc/build/mdds_0.5.3/include/mdds/point_quad_tree.hpp 2011-07-20 02:04:36.088835900 -0600
@@ -623,10 +623,10 @@
template<typename _Key, typename _Data>
void point_quad_tree<_Key,_Data>::insert(key_type x, key_type y, data_type data)
{
- m_xrange.first = ::std::min(m_xrange.first, x);
- m_xrange.second = ::std::max(m_xrange.second, x);
- m_yrange.first = ::std::min(m_yrange.first, y);
- m_yrange.second = ::std::max(m_yrange.second, y);
+ m_xrange.first = (::std::min)(m_xrange.first, x);
+ m_xrange.second = (::std::max)(m_xrange.second, x);
+ m_yrange.first = (::std::min)(m_yrange.first, y);
+ m_yrange.second = (::std::max)(m_yrange.second, y);
if (!m_root)
{
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