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
fb76228f
Kaydet (Commit)
fb76228f
authored
Ock 29, 2016
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unoxml: replace boost::bind with lambda
Change-Id: Id8d73fa9a93cd793dbce0d3f84ddde86860f7308
üst
d54a7555
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
librdf_repository.cxx
unoxml/source/rdf/librdf_repository.cxx
+4
-4
No files found.
unoxml/source/rdf/librdf_repository.cxx
Dosyayı görüntüle @
fb76228f
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include <boost/noncopyable.hpp>
#include <boost/noncopyable.hpp>
#include <boost/shared_array.hpp>
#include <boost/shared_array.hpp>
#include <boost/bind.hpp>
#include <boost/optional.hpp>
#include <boost/optional.hpp>
#include <libxslt/security.h>
#include <libxslt/security.h>
...
@@ -1253,8 +1252,8 @@ throw (uno::RuntimeException, rdf::RepositoryException, std::exception)
...
@@ -1253,8 +1252,8 @@ throw (uno::RuntimeException, rdf::RepositoryException, std::exception)
::
std
::
vector
<
uno
::
Reference
<
rdf
::
XURI
>
>
ret
;
::
std
::
vector
<
uno
::
Reference
<
rdf
::
XURI
>
>
ret
;
std
::
transform
(
m_NamedGraphs
.
begin
(),
m_NamedGraphs
.
end
(),
std
::
transform
(
m_NamedGraphs
.
begin
(),
m_NamedGraphs
.
end
(),
std
::
back_inserter
(
ret
),
std
::
back_inserter
(
ret
),
boost
::
bind
(
&
rdf
::
XNamedGraph
::
getName
,
[](
std
::
pair
<
OUString
,
::
rtl
::
Reference
<
librdf_NamedGraph
>>
const
&
it
)
boost
::
bind
(
&
NamedGraphMap_t
::
value_type
::
second
,
_1
))
);
{
return
it
.
second
->
getName
();
}
);
return
comphelper
::
containerToSequence
(
ret
);
return
comphelper
::
containerToSequence
(
ret
);
}
}
...
@@ -1585,7 +1584,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
...
@@ -1585,7 +1584,8 @@ throw (uno::RuntimeException, lang::IllegalArgumentException,
predicates
;
predicates
;
::
std
::
transform
(
i_rPredicates
.
begin
(),
i_rPredicates
.
end
(),
::
std
::
transform
(
i_rPredicates
.
begin
(),
i_rPredicates
.
end
(),
::
std
::
back_inserter
(
predicates
),
::
std
::
back_inserter
(
predicates
),
::
boost
::
bind
(
&
librdf_TypeConverter
::
extractResource_NoLock
,
_1
));
[](
uno
::
Reference
<
rdf
::
XURI
>
const
&
xURI
)
{
return
librdf_TypeConverter
::
extractResource_NoLock
(
xURI
);
});
removeStatementRDFa
(
i_xObject
);
// not atomic with insertion?
removeStatementRDFa
(
i_xObject
);
// not atomic with insertion?
...
...
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