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
cb937e72
Kaydet (Commit)
cb937e72
authored
Agu 21, 2011
tarafından
Lionel Elie Mamane
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use boost::unordered_map instead of STL one so as not to require C++0x
üst
2fa3cac0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pyuno_module.cxx
pyuno/source/module/pyuno_module.cxx
+3
-3
No files found.
pyuno/source/module/pyuno_module.cxx
Dosyayı görüntüle @
cb937e72
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
#include "pyuno_impl.hxx"
#include "pyuno_impl.hxx"
#include <
unordered_ma
p>
#include <
boost/unordered_map.hp
p>
#include <utility>
#include <utility>
#include <osl/module.hxx>
#include <osl/module.hxx>
...
@@ -91,11 +91,11 @@ namespace {
...
@@ -91,11 +91,11 @@ namespace {
class
fillStructState
class
fillStructState
{
{
typedef
std
::
unordered_map
<
const
OUString
,
bool
,
OUStringHash
>
initialised_t
;
typedef
boost
::
unordered_map
<
const
OUString
,
bool
,
OUStringHash
>
initialised_t
;
// Keyword arguments used
// Keyword arguments used
PyObject
*
used
;
PyObject
*
used
;
// Which structure members are initialised
// Which structure members are initialised
std
::
unordered_map
<
const
OUString
,
bool
,
OUStringHash
>
initialised
;
boost
::
unordered_map
<
const
OUString
,
bool
,
OUStringHash
>
initialised
;
// How many positional arguments are consumed
// How many positional arguments are consumed
// This is always the so-many first ones
// This is always the so-many first ones
sal_Int32
nPosConsumed
;
sal_Int32
nPosConsumed
;
...
...
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