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
867ead5f
Kaydet (Commit)
867ead5f
authored
Kas 02, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cli_ure: fix build
Change-Id: Ib35a951ea813151ca330c3eb2286cbada91bd972
üst
be729e77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
climaker_emit.cxx
cli_ure/source/climaker/climaker_emit.cxx
+11
-11
climaker_share.h
cli_ure/source/climaker/climaker_share.h
+1
-1
No files found.
cli_ure/source/climaker/climaker_emit.cxx
Dosyayı görüntüle @
867ead5f
...
...
@@ -290,7 +290,7 @@ Assembly ^ TypeEmitter::type_resolve(
cts_name
,
false
/* no exc */
);
if
(
nullptr
!=
ret_type
)
{
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> resolving type {0} from {1}."
,
...
...
@@ -402,7 +402,7 @@ Assembly ^ TypeEmitter::type_resolve(
code
->
Emit
(
Emit
::
OpCodes
::
Stfld
,
field_Context
);
code
->
Emit
(
Emit
::
OpCodes
::
Ret
);
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting exception type "
...
...
@@ -456,7 +456,7 @@ Assembly ^ TypeEmitter::type_resolve(
type_Exception
->
GetConstructor
(
param_types
)
);
code
->
Emit
(
Emit
::
OpCodes
::
Ret
);
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting exception type "
...
...
@@ -496,7 +496,7 @@ Assembly ^ TypeEmitter::type_resolve(
FieldAttributes
::
Literal
)
);
field_builder
->
SetConstant
(
constant
);
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting constant type {0}"
,
cts_name
);
...
...
@@ -547,7 +547,7 @@ Assembly ^ TypeEmitter::type_resolve(
field_builder
->
SetConstant
(
constant
);
}
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting constants group type {0}"
,
cts_name
);
...
...
@@ -599,7 +599,7 @@ Assembly ^ TypeEmitter::type_resolve(
((
::
System
::
Int32
)
enum_values
[
enum_pos
])
);
}
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting enum type {0}"
,
cts_name
);
...
...
@@ -1054,7 +1054,7 @@ Assembly ^ TypeEmitter::type_resolve(
m_incomplete_ifaces
->
Remove
(
cts_name
);
xType
->
release
();
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting interface type {0}"
,
cts_name
);
...
...
@@ -1407,7 +1407,7 @@ Assembly ^ TypeEmitter::type_resolve(
code
->
Emit
(
Emit
::
OpCodes
::
Ret
);
entry
->
m_ctor
=
ctor_builder
;
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting {0} type {1}"
,
...
...
@@ -1424,7 +1424,7 @@ Assembly ^ TypeEmitter::type_resolve(
m_incomplete_structs
->
Remove
(
cts_name
);
entry
->
m_xType
->
release
();
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting struct type {0}"
,
cts_name
);
...
...
@@ -1877,7 +1877,7 @@ Assembly ^ TypeEmitter::type_resolve(
::
System
::
String
^
cts_name
=
type_builder
->
FullName
;
m_incomplete_services
->
Remove
(
cts_name
);
xServiceType
->
release
();
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting service type {0}"
,
cts_name
);
...
...
@@ -2040,7 +2040,7 @@ Emit::CustomAttributeBuilder^ TypeEmitter::get_exception_attribute(
::
System
::
String
^
cts_name
=
type_builder
->
FullName
;
m_incomplete_singletons
->
Remove
(
cts_name
);
xSingletonType
->
release
();
if
(
g_
v
erbose
)
if
(
g_
bV
erbose
)
{
::
System
::
Console
::
WriteLine
(
"> emitting singleton type {0}"
,
cts_name
);
...
...
cli_ure/source/climaker/climaker_share.h
Dosyayı görüntüle @
867ead5f
...
...
@@ -36,7 +36,7 @@ namespace climaker
{
extern
bool
g_
v
erbose
;
extern
bool
g_
bV
erbose
;
ref
struct
Constants
{
...
...
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