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
104a7bab
Kaydet (Commit)
104a7bab
authored
Haz 20, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wdeprecated-register
Change-Id: I1ec3d7845477cfb5bc6a3d7f70ddabef12583e1b
üst
a9966b27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
storcach.cxx
store/source/storcach.cxx
+2
-2
stortree.cxx
store/source/stortree.cxx
+3
-3
No files found.
store/source/storcach.cxx
Dosyayı görüntüle @
104a7bab
...
...
@@ -222,7 +222,7 @@ void EntryCache::destroy (Entry * entry)
*======================================================================*/
static
int
highbit
(
sal_Size
n
)
{
register
int
k
=
1
;
int
k
=
1
;
if
(
n
==
0
)
return
(
0
);
...
...
@@ -420,7 +420,7 @@ void PageCache_Impl::rescale_Impl (sal_Size new_size)
Entry
*
PageCache_Impl
::
lookup_Impl
(
Entry
*
entry
,
sal_uInt32
nOffset
)
{
register
int
lookups
=
0
;
int
lookups
=
0
;
while
(
entry
!=
0
)
{
if
(
entry
->
m_nOffset
==
nOffset
)
...
...
store/source/stortree.cxx
Dosyayı görüntüle @
104a7bab
...
...
@@ -57,12 +57,12 @@ OStoreBTreeNodeData::OStoreBTreeNodeData (sal_uInt16 nPageSize)
*/
sal_uInt16
OStoreBTreeNodeData
::
find
(
const
T
&
t
)
const
{
register
sal_Int32
l
=
0
;
register
sal_Int32
r
=
usageCount
()
-
1
;
sal_Int32
l
=
0
;
sal_Int32
r
=
usageCount
()
-
1
;
while
(
l
<
r
)
{
register
sal_Int32
const
m
=
((
l
+
r
)
>>
1
);
sal_Int32
const
m
=
((
l
+
r
)
>>
1
);
if
(
t
.
m_aKey
==
m_pData
[
m
].
m_aKey
)
return
((
sal_uInt16
)(
m
));
...
...
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