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
28159e10
Kaydet (Commit)
28159e10
authored
Ock 09, 2010
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cmcfixes69: #i108178#: delete allocated object (removes unused code warning from callcatcher)
üst
6fbff330
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
collectdircontent.cxx
soltools/mkdepend/collectdircontent.cxx
+4
-0
collectdircontent.hxx
soltools/mkdepend/collectdircontent.hxx
+1
-0
main.c
soltools/mkdepend/main.c
+3
-0
No files found.
soltools/mkdepend/collectdircontent.cxx
Dosyayı görüntüle @
28159e10
...
@@ -73,6 +73,10 @@ extern "C" {
...
@@ -73,6 +73,10 @@ extern "C" {
return
new
IncludesCollection
;
return
new
IncludesCollection
;
}
}
void
delete_IncludesCollection
(
IncludesCollection
*
m
)
{
delete
m
;
}
int
call_IncludesCollection_exists
(
IncludesCollection
*
m
,
const
char
*
filePath
)
{
int
call_IncludesCollection_exists
(
IncludesCollection
*
m
,
const
char
*
filePath
)
{
return
m
->
exists
(
filePath
);
return
m
->
exists
(
filePath
);
}
}
...
...
soltools/mkdepend/collectdircontent.hxx
Dosyayı görüntüle @
28159e10
...
@@ -47,6 +47,7 @@ extern "C" {
...
@@ -47,6 +47,7 @@ extern "C" {
#endif
#endif
struct
IncludesCollection
*
create_IncludesCollection
(
void
);
struct
IncludesCollection
*
create_IncludesCollection
(
void
);
void
delete_IncludesCollection
(
struct
IncludesCollection
*
);
int
call_IncludesCollection_exists
(
struct
IncludesCollection
*
m
,
const
char
*
filePath
);
int
call_IncludesCollection_exists
(
struct
IncludesCollection
*
m
,
const
char
*
filePath
);
...
...
soltools/mkdepend/main.c
Dosyayı görüntüle @
28159e10
...
@@ -465,6 +465,9 @@ int main(argc, argv)
...
@@ -465,6 +465,9 @@ int main(argc, argv)
}
}
if
(
printed
)
if
(
printed
)
printf
(
"
\n
"
);
printf
(
"
\n
"
);
delete_IncludesCollection
(
incCollection
);
exit
(
0
);
exit
(
0
);
}
}
...
...
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