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
e309a0b2
Kaydet (Commit)
e309a0b2
authored
Şub 03, 2011
tarafından
Fridrich Strba
Kaydeden (comit)
Fridrich Štrba
Şub 03, 2011
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
move module rdbmaker to boost unordered containers
üst
78955632
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
50 deletions
+7
-50
dependency.hxx
rdbmaker/inc/codemaker/dependency.hxx
+3
-24
options.hxx
rdbmaker/inc/codemaker/options.hxx
+2
-13
typemanager.hxx
rdbmaker/inc/codemaker/typemanager.hxx
+2
-13
No files found.
rdbmaker/inc/codemaker/dependency.hxx
Dosyayı görüntüle @
e309a0b2
...
...
@@ -29,7 +29,7 @@
#ifndef _CODEMAKER_DEPENDENCY_HXX_
#define _CODEMAKER_DEPENDENCY_HXX_
#include <
hash_ma
p>
#include <
boost/unordered_map.hp
p>
#include <registry/registry.hxx>
#include <registry/reflread.hxx>
#include <codemaker/typemanager.hxx>
...
...
@@ -80,26 +80,7 @@ struct LessTypeUsing
typedef
::
std
::
set
<
TypeUsing
,
LessTypeUsing
>
TypeUsingSet
;
#if (defined( _MSC_VER ) && ( _MSC_VER < 1200 ))
typedef
::
std
::
__hash_map__
<
::
rtl
::
OString
,
TypeUsingSet
,
HashString
,
EqualString
,
NewAlloc
>
DependencyMap
;
typedef
::
std
::
__hash_map__
<
::
rtl
::
OString
,
sal_uInt16
,
HashString
,
EqualString
,
NewAlloc
>
GenerationMap
;
#else
typedef
::
std
::
hash_map
typedef
::
boost
::
unordered_map
<
::
rtl
::
OString
,
TypeUsingSet
,
...
...
@@ -107,7 +88,7 @@ typedef ::std::hash_map
EqualString
>
DependencyMap
;
typedef
::
std
::
hash
_map
typedef
::
boost
::
unordered
_map
<
::
rtl
::
OString
,
sal_uInt16
,
...
...
@@ -115,8 +96,6 @@ typedef ::std::hash_map
EqualString
>
GenerationMap
;
#endif
struct
TypeDependencyImpl
{
TypeDependencyImpl
()
...
...
rdbmaker/inc/codemaker/options.hxx
Dosyayı görüntüle @
e309a0b2
...
...
@@ -29,27 +29,16 @@
#ifndef _CODEMAKER_OPTIONS_HXX_
#define _CODEMAKER_OPTIONS_HXX_
#include <
hash_ma
p>
#include <
boost/unordered_map.hp
p>
#include <codemaker/global.hxx>
#if defined( _MSC_VER ) && ( _MSC_VER < 1200 )
typedef
::
std
::
__hash_map__
<
::
rtl
::
OString
,
::
rtl
::
OString
,
HashString
,
EqualString
,
NewAlloc
>
OptionMap
;
#else
typedef
::
std
::
hash_map
typedef
::
boost
::
unordered_map
<
::
rtl
::
OString
,
::
rtl
::
OString
,
HashString
,
EqualString
>
OptionMap
;
#endif
class
CannotDumpException
{
...
...
rdbmaker/inc/codemaker/typemanager.hxx
Dosyayı görüntüle @
e309a0b2
...
...
@@ -25,7 +25,7 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <
hash_ma
p>
#include <
boost/unordered_map.hp
p>
#ifndef _CODEMAKER_TYPEMANAGER_HXX_
#define _CODEMAKER_TYPEMANAGER_HXX_
...
...
@@ -33,24 +33,13 @@
typedef
::
std
::
list
<
Registry
*
>
RegistryList
;
#if defined( _MSC_VER ) && ( _MSC_VER < 1200 )
typedef
::
std
::
__hash_map__
<
::
rtl
::
OString
,
// Typename
RTTypeClass
,
// TypeClass
HashString
,
EqualString
,
NewAlloc
>
T2TypeClassMap
;
#else
typedef
::
std
::
hash_map
typedef
::
boost
::
unordered_map
<
::
rtl
::
OString
,
// Typename
RTTypeClass
,
// TypeClass
HashString
,
EqualString
>
T2TypeClassMap
;
#endif
struct
TypeManagerImpl
{
...
...
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