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
a251fe4d
Kaydet (Commit)
a251fe4d
authored
Mar 19, 2015
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
We require MSVC2013 (_MSC_VER == 1800) now
Change-Id: Ice8504041f22e00f2e5010813d9dff1d2987c8d6
üst
cfeeceab
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
37 deletions
+4
-37
climaker_app.cxx
cli_ure/source/climaker/climaker_app.cxx
+0
-8
climaker_emit.cxx
cli_ure/source/climaker/climaker_emit.cxx
+0
-5
typed_flags_set.hxx
include/o3tl/typed_flags_set.hxx
+3
-9
log.hxx
include/sal/log.hxx
+0
-12
pyuno_impl.hxx
pyuno/source/module/pyuno_impl.hxx
+1
-1
wrapper.cxx
solenv/gcc-wrappers/wrapper.cxx
+0
-2
No files found.
cli_ure/source/climaker/climaker_app.cxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -630,20 +630,12 @@ SAL_IMPLEMENT_MAIN()
if
(
g_verbose
)
{
#if _MSC_VER < 1700
// Bogus: warning C4564: method 'CheckInvalidPathChars' of class 'System::IO::Path' defines unsupported default parameter 'checkAdditional'
#pragma warning (push)
#pragma warning (disable: 4564)
#endif
::
System
::
Console
::
Write
(
"> saving assembly {0}{1}{2}..."
,
output_dir
,
gcnew
::
System
::
String
(
::
System
::
IO
::
Path
::
DirectorySeparatorChar
,
1
),
output_file
);
#if _MSC_VER < 1700
#pragma warning (pop)
#endif
}
assembly_builder
->
Save
(
output_file
);
if
(
g_verbose
)
...
...
cli_ure/source/climaker/climaker_emit.cxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -876,11 +876,6 @@ Assembly ^ TypeEmitter::type_resolve(
MethodAttributes
::
Virtual
|
MethodAttributes
::
NewSlot
|
MethodAttributes
::
HideBySig
);
//#if defined(_MSC_VER) && (_MSC_VER < 1400)
// MethodAttributes::Instance);
//#else
// Instance);
//#endif
if
(
TypeClass_INTERFACE_METHOD
==
xMember
->
getTypeClass
())
{
...
...
include/o3tl/typed_flags_set.hxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -58,15 +58,9 @@ struct is_typed_flags {
operator
E
()
{
return
static_cast
<
E
>
(
value_
);
}
#if !defined _MSC_VER || _MSC_VER > 1700
explicit
#endif
operator
typename
underlying_type
<
E
>::
type
()
{
return
value_
;
}
#if !defined _MSC_VER || _MSC_VER > 1700
explicit
#endif
operator
bool
()
{
return
value_
!=
0
;
}
explicit
operator
typename
underlying_type
<
E
>::
type
()
{
return
value_
;
}
explicit
operator
bool
()
{
return
value_
!=
0
;
}
private
:
typename
underlying_type
<
E
>::
type
value_
;
...
...
include/sal/log.hxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -74,27 +74,18 @@ template< typename T > inline StreamIgnore operator <<(
SAL_UNUSED_PARAMETER
StreamStart
const
&
,
SAL_UNUSED_PARAMETER
T
const
&
)
{
std
::
abort
();
#if defined _MSC_VER && _MSC_VER < 1700
return
StreamIgnore
();
#endif
}
template
<
typename
T
>
inline
StreamIgnore
operator
<<
(
SAL_UNUSED_PARAMETER
StreamString
const
&
,
SAL_UNUSED_PARAMETER
T
const
&
)
{
std
::
abort
();
#if defined _MSC_VER && _MSC_VER < 1700
return
StreamIgnore
();
#endif
}
template
<
typename
T
>
inline
StreamIgnore
operator
<<
(
SAL_UNUSED_PARAMETER
StreamIgnore
const
&
,
SAL_UNUSED_PARAMETER
T
const
&
)
{
std
::
abort
();
#if defined _MSC_VER && _MSC_VER < 1700
return
StreamIgnore
();
#endif
}
template
<
typename
T
>
typename
T
::
Result
getResult
(
T
const
&
);
...
...
@@ -103,9 +94,6 @@ inline char const * unwrapStream(StreamString const & s) { return s.string; }
inline
char
const
*
unwrapStream
(
SAL_UNUSED_PARAMETER
StreamIgnore
const
&
)
{
std
::
abort
();
#if defined _MSC_VER && _MSC_VER < 1700
return
0
;
#endif
}
}
}
...
...
pyuno/source/module/pyuno_impl.hxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -19,7 +19,7 @@
#ifndef INCLUDED_PYUNO_SOURCE_MODULE_PYUNO_IMPL_HXX
#define INCLUDED_PYUNO_SOURCE_MODULE_PYUNO_IMPL_HXX
#if defined(_MSC_VER)
&& (_MSC_VER >= 1600)
#if defined(_MSC_VER)
// Workaround for some horrible hypot() mess
#include <math.h>
#endif
...
...
solenv/gcc-wrappers/wrapper.cxx
Dosyayı görüntüle @
a251fe4d
...
...
@@ -118,9 +118,7 @@ string processccargs(vector<string> rawargs) {
}
else
if
(
*
i
==
"-g"
)
{
args
.
append
(
"-Zi"
);
#if _MSC_VER >= 1800
args
.
append
(
" -FS"
);
#endif
}
else
if
(
!
(
*
i
).
compare
(
0
,
2
,
"-D"
))
{
// need to re-escape strings for preprocessor
...
...
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