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
aa4ceee5
Kaydet (Commit)
aa4ceee5
authored
May 28, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
drop ludicrously old msg_filter foo
Change-Id: Ie53c9acd51a53fbb11f0735739edbf18551a620b
üst
21747cae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
78 deletions
+0
-78
msg_filter
solenv/bin/msg_filter
+0
-78
No files found.
solenv/bin/msg_filter
deleted
100755 → 0
Dosyayı görüntüle @
21747cae
:
# -*- perl -*-
eval
'exec perl -wS $0 ${1+"$@"}'
if
0
;
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
# This is a script to get rid of bogus error messages that are spit out
# by the compiler - sub 30/11/1999
# Lines that contain `xxxx' where xxxx belongs to the list knownMessages
# and is surrounded by a backtick (`) and a forward tick (')
# will not be seen in the compiler output
@knownMessages
=
(
"__pure_virtual"
,
"__vt_9bad_alloc"
,
"__vt_9exception"
,
"_._9bad_alloc"
,
"__cp_push_exception"
,
"__uncatch_exception"
,
"__rtti_user"
,
"__rtti_si"
,
"__throw"
,
"terminate__Fv"
,
"__cp_pop_exception"
,
"__builtin_vec_new"
,
"__cmpdi2"
,
"__builtin_vec_delete"
,
"__cp_eh_info"
,
"__builtin_delete"
,
"__builtin_new"
,
"__eh_alloc"
,
"__check_eh_spec"
,
"_type_match_rtti"
,
"__rtti_class"
,
"set_new_handler_FPFv_v"
,
"__throw_type_match_rtti"
,
"__check_eh_spec"
,
"exception_type_info"
,
"exception type_info function"
,
"exception type_info node"
,
"exception virtual table"
,
"terminate(void)"
);
# Create a hash %msgHash from list @knownMessages
foreach
$msg
(
@knownMessages
)
{
$msgHash
{
$msg
}
++
;
}
while
(
<
STDIN
>
)
{
if
(
/\`([\s\w]+)\'/
)
{
$entry
=
$1
;
if
(
defined
(
$entry
))
{
if
(
!
exists
$msgHash
{
$entry
})
{
print
$_
;
}
}
}
else
{
print
$_
;
}
}
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