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
af6fdd68
Kaydet (Commit)
af6fdd68
authored
Mar 09, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid reserved identifier
Change-Id: Ie62bbf64a9cdb74725fd48a8f8dcc1ab76d97219
üst
d429ea8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
list.cxx
vcl/source/fontsubset/list.cxx
+2
-2
list.h
vcl/source/fontsubset/list.h
+1
-1
No files found.
vcl/source/fontsubset/list.cxx
Dosyayı görüntüle @
af6fdd68
...
@@ -39,7 +39,7 @@ typedef struct _lnode {
...
@@ -39,7 +39,7 @@ typedef struct _lnode {
}
lnode
;
}
lnode
;
struct
_list
{
struct
list_
{
lnode
*
head
,
*
tail
,
*
cptr
;
lnode
*
head
,
*
tail
,
*
cptr
;
size_t
aCount
;
size_t
aCount
;
list_destructor
eDtor
;
list_destructor
eDtor
;
...
@@ -84,7 +84,7 @@ static lnode *appendPrim(list pThis, void *el)
...
@@ -84,7 +84,7 @@ static lnode *appendPrim(list pThis, void *el)
/*- public methods */
/*- public methods */
list
listNewEmpty
()
/*- default ctor */
list
listNewEmpty
()
/*- default ctor */
{
{
list
pThis
=
static_cast
<
list
>
(
rtl_allocateMemory
(
sizeof
(
struct
_list
)));
list
pThis
=
static_cast
<
list
>
(
rtl_allocateMemory
(
sizeof
(
struct
list_
)));
assert
(
pThis
!=
nullptr
);
assert
(
pThis
!=
nullptr
);
pThis
->
aCount
=
0
;
pThis
->
aCount
=
0
;
...
...
vcl/source/fontsubset/list.h
Dosyayı görüntüle @
af6fdd68
...
@@ -37,7 +37,7 @@ extern "C"
...
@@ -37,7 +37,7 @@ extern "C"
* List of void * pointers
* List of void * pointers
*/
*/
typedef
struct
_list
*
list
;
typedef
struct
list_
*
list
;
typedef
void
(
*
list_destructor
)(
void
*
);
typedef
void
(
*
list_destructor
)(
void
*
);
/*- constructors and a destructor */
/*- constructors and a destructor */
...
...
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