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
7490d80c
Kaydet (Commit)
7490d80c
authored
Eki 29, 2013
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Catch exception always as const reference.
Change-Id: I7526a8724b66bbf23c5b38b76dcd6497ec409979
üst
64e00fab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
formulagroupcl.cxx
sc/source/core/opencl/formulagroupcl.cxx
+2
-2
No files found.
sc/source/core/opencl/formulagroupcl.cxx
Dosyayı görüntüle @
7490d80c
...
@@ -1414,7 +1414,7 @@ bool FormulaGroupInterpreterOpenCL::interpret( ScDocument& rDoc,
...
@@ -1414,7 +1414,7 @@ bool FormulaGroupInterpreterOpenCL::interpret( ScDocument& rDoc,
return
true
;
return
true
;
}
}
#undef NO_FALLBACK_TO_SWINTERP
/* undef this for non-TDD runs */
#undef NO_FALLBACK_TO_SWINTERP
/* undef this for non-TDD runs */
catch
(
UnhandledToken
&
ut
)
{
catch
(
const
UnhandledToken
&
)
{
std
::
cerr
<<
"Dynamic formual compiler: unhandled token
\n
"
;
std
::
cerr
<<
"Dynamic formual compiler: unhandled token
\n
"
;
#ifdef NO_FALLBACK_TO_SWINTERP
#ifdef NO_FALLBACK_TO_SWINTERP
assert
(
false
);
assert
(
false
);
...
@@ -1422,7 +1422,7 @@ bool FormulaGroupInterpreterOpenCL::interpret( ScDocument& rDoc,
...
@@ -1422,7 +1422,7 @@ bool FormulaGroupInterpreterOpenCL::interpret( ScDocument& rDoc,
return
false
;
return
false
;
#endif
#endif
}
}
catch
(
OpenCLError
&
oce
)
{
catch
(
const
OpenCLError
&
oce
)
{
std
::
cerr
<<
"Dynamic formula compiler: OpenCL error: "
;
std
::
cerr
<<
"Dynamic formula compiler: OpenCL error: "
;
std
::
cerr
<<
oce
.
mError
<<
"
\n
"
;
std
::
cerr
<<
oce
.
mError
<<
"
\n
"
;
#ifdef NO_FALLBACK_TO_SWINTERP
#ifdef NO_FALLBACK_TO_SWINTERP
...
...
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