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
e58704ff
Kaydet (Commit)
e58704ff
authored
Mar 09, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid reserved identifiers
Change-Id: Ie6a7e3fafd1394f93164a46fa0e7e149cf947ed2
üst
f5b426eb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
stl_types.hxx
include/comphelper/stl_types.hxx
+9
-9
No files found.
include/comphelper/stl_types.hxx
Dosyayı görüntüle @
e58704ff
...
...
@@ -130,21 +130,21 @@ struct OInterfaceCompare
}
};
template
<
class
_Tp
,
class
_
Arg
>
class
mem_fun1_t
:
public
::
std
::
binary_function
<
_Tp
*
,
_
Arg
,
void
>
template
<
class
Tp
,
class
Arg
>
class
mem_fun1_t
:
public
::
std
::
binary_function
<
Tp
*
,
Arg
,
void
>
{
typedef
void
(
_Tp
::*
_fun_type
)(
_
Arg
);
typedef
void
(
Tp
::*
_fun_type
)(
Arg
);
public
:
explicit
mem_fun1_t
(
_fun_type
__pf
)
:
_M_f
(
__
pf
)
{}
void
operator
()(
_Tp
*
__p
,
_Arg
__x
)
const
{
(
__p
->*
_M_f
)(
__
x
);
}
explicit
mem_fun1_t
(
_fun_type
pf
)
:
M_f
(
pf
)
{}
void
operator
()(
Tp
*
p
,
Arg
x
)
const
{
(
p
->*
M_f
)(
x
);
}
private
:
_fun_type
_
M_f
;
_fun_type
M_f
;
};
template
<
class
_Tp
,
class
_
Arg
>
inline
mem_fun1_t
<
_Tp
,
_Arg
>
mem_fun
(
void
(
_Tp
::*
__f
)(
_
Arg
))
template
<
class
Tp
,
class
Arg
>
inline
mem_fun1_t
<
Tp
,
Arg
>
mem_fun
(
void
(
Tp
::*
f
)(
Arg
))
{
return
mem_fun1_t
<
_Tp
,
_Arg
>
(
__
f
);
return
mem_fun1_t
<
Tp
,
Arg
>
(
f
);
}
/** output iterator that appends OUStrings into an OUStringBuffer.
...
...
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