- 17 Eyl, 2018 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
...warning about (for now only) functions and variables with external linkage that likely don't need it. The problems with moving entities into unnamed namespacs and breaking ADL (as alluded to in comments in compilerplugins/clang/external.cxx) are illustrated by the fact that while struct S1 { int f() { return 0; } }; int f(S1 s) { return s.f(); } namespace N { struct S2: S1 { int f() { return 1; } }; int f(S2 s) { return s.f(); } } int main() { return f(N::S2()); } returns 1, both moving just the struct S2 into an nunnamed namespace, struct S1 { int f() { return 0; } }; int f(S1 s) { return s.f(); } namespace N { namespace { struct S2: S1 { int f() { return 1; } }; } int f(S2 s) { return s.f(); } } int main() { return f(N::S2()); } as well as moving just the function f overload into an unnamed namespace, struct S1 { int f() { return 0; } }; int f(S1 s) { return s.f(); } namespace N { struct S2: S1 { int f() { return 1; } }; namespace { int f(S2 s) { return s.f(); } } } int main() { return f(N::S2()); } would each change the program to return 0 instead. Change-Id: I4d09f7ac5e8f9bcd6e6bde4712608444b642265c Reviewed-on: https://gerrit.libreoffice.org/60539 Tested-by: Jenkins Reviewed-by:
Stephan Bergmann <sbergman@redhat.com>
-
- 16 Tem, 2018 1 kayıt (commit)
-
-
Eike Rathke yazdı
Change-Id: I9426e77aa85cfe068df59db47b8ac50b59cd4eb3 Reviewed-on: https://gerrit.libreoffice.org/57500Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by: Jenkins
-
- 15 Ock, 2018 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: Ibdfec3e35c6424fdd4d9b15ff4f4d7441a5f7e36
-
- 12 Ock, 2018 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable loplugin:cstylecast for some more cases" plus solenv/clang-format/reformat-formatted-files Change-Id: Idca83b62766c2de87bf112cf0bb565e953b7dcb0
-
- 19 Ara, 2017 1 kayıt (commit)
-
-
Eike Rathke yazdı
It will be required by ICU 61 anyway, see https://ssl.icu-project.org/repos/icu/trunk/icu4c/readme.html#RecBuild Change-Id: Ia051e8e2aa64b0e32a7f16a2afebaef0e4ebf531 Reviewed-on: https://gerrit.libreoffice.org/46739Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 13 Ara, 2017 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
"Indirect" calls to isSallCallFunction (for canonic and overridden FunctionDecls) already needed to handle many cases of FunctionDecls spanning macros, so it isn't that much more work to make that also work for cases called directly from VisitFunctionDecl. Change-Id: I529f148c8872b86aa1ef082c6cb73db8ab1866e7 Reviewed-on: https://gerrit.libreoffice.org/46367Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Stephan Bergmann <sbergman@redhat.com>
-
- 07 Ara, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: Id6820abec4b8ca8bee26d62b333fd30b42a14aec Reviewed-on: https://gerrit.libreoffice.org/46007Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 20 Kas, 2017 1 kayıt (commit)
-
-
Eike Rathke yazdı
Change-Id: I6d90f51ee88c4e1005edbaa93d23cfb94cb2acfb Reviewed-on: https://gerrit.libreoffice.org/44871Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 17 Kas, 2017 1 kayıt (commit)
-
-
Eike Rathke yazdı
This reverts commit f643e1f6. Failing in firebird, back to the drawing board.. Change-Id: I087d2fa6e81cf713458b1c9645edc7c1facf148c Reviewed-on: https://gerrit.libreoffice.org/44843Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 16 Kas, 2017 1 kayıt (commit)
-
-
David Tardon yazdı
Change-Id: I07837be7faac0b2238b0cba8fb981e4c4d24c498
-
- 20 Nis, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I0026e0a1890b984675e82ab7be5cdbc56e142a87 Reviewed-on: https://gerrit.libreoffice.org/36722Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 13 Nis, 2017 1 kayıt (commit)
-
-
Andrea Gelmini yazdı
No automatic tools. Manual checked and tested. Change-Id: Ife260fa4e1d786cf81f2917a901664cc54943754 Reviewed-on: https://gerrit.libreoffice.org/36371Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Stephan Bergmann <sbergman@redhat.com>
-
- 31 Mar, 2017 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I959b26471fe69c4ee8ecb7e2fd57a53e24187112 Reviewed-on: https://gerrit.libreoffice.org/35905Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noel.grandin@collabora.co.uk>
-
- 22 Mar, 2017 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: I6eba985f41b78160d2377b2cd4c27ec85ade33df
-
- 08 Şub, 2017 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Idc26faf904f0c89cfd66f53bb311d8ce9b41eaab
-
- 14 Ock, 2017 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I7f9b8d21652c79642f9a2f916ad0609c8abd430b
-
- 02 Kas, 2016 1 kayıt (commit)
-
-
Eike Rathke yazdı
Change-Id: I4a992447df65b337721a2a2627d974172a14cba5 Reviewed-on: https://gerrit.libreoffice.org/30487Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 25 Eyl, 2016 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Ief3dd38ade3fca74ea35e2a1a71637cba3336b59
-
- 20 Eyl, 2016 2 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: I6f0b8247b6757ddee158bd870473b749f22e7671
-
Stephan Bergmann yazdı
Change-Id: Ifdeaf8cde86eb284e7b5c67e8ef3bfe816c5654c
-
- 15 Şub, 2016 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
...and fix its documentation, and use it throughout the code base. Change-Id: I349bc2009b1b0aa7115ea90bc6ecd0a812f63698
-
- 05 Kas, 2015 1 kayıt (commit)
-
-
Justin Luth yazdı
Do nothing for numbers 0x00 - 0x1f. Change-Id: Idda596e735c464b97dc3624253ebbea86933ff2c Reviewed-on: https://gerrit.libreoffice.org/19654Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 28 Eki, 2015 1 kayıt (commit)
-
-
Justin Luth yazdı
Change-Id: I552f305e78427bdbd37e48013f5cc4b78024e8ff Reviewed-on: https://gerrit.libreoffice.org/19631Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Eike Rathke <erack@redhat.com> Tested-by:
Eike Rathke <erack@redhat.com>
-
- 20 Eki, 2015 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I3148a1a08302fa9b21b0e5459f04ecee6ec30a18 Reviewed-on: https://gerrit.libreoffice.org/19455Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Noel Grandin <noelgrandin@gmail.com>
-
- 18 Eyl, 2015 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Ie490bf2c6921f393bdeed96b1a8815996b701bf0 Reviewed-on: https://gerrit.libreoffice.org/18670Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
- 21 Agu, 2015 1 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: Iaf6415d3b33a4ce195a00913a0df69f1fb794217
-
- 12 Agu, 2015 1 kayıt (commit)
-
-
Justin Luth yazdı
-toggles between characters and their unicode notation -sets Alt-X as a global keyboard accelerator -handles all of the unicode planes -intelligently handles combining characters -if text is selected, limits the input to that text -implemented in Writer, Draw, Impress Change-Id: Idcd8e7f0a4f1b81fa7f5f3200c76be19472ffa37 Reviewed-on: https://gerrit.libreoffice.org/17535Tested-by:
Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk>
-
- 22 Nis, 2015 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include <sal/log.hxx> (and don't make use of it themselves), but many other files happen to depend on it. Cleaned up some, but something like grep -FwL sal/log.hxx $(git grep -Elw \ 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF') -- \*.cxx) shows lots more files that potentially need fixing before the include can be removed from rtl/string.hxx and rtl/ustring.hxx. Change-Id: Ibf033363e83d37851776f392dc0b077381cd8b90
-
- 19 Ara, 2014 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I4d32ac386ff8b69bee4319e673769917045d9450 Reviewed-on: https://gerrit.libreoffice.org/13547Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
- 18 Şub, 2014 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: Ic4a198d737692734ae3fbc096f370a3aa0667c5b
-
- 22 Ock, 2014 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I1c3e7dc28e389a9580239165d04b171e06f5618e
-
- 21 Ock, 2014 1 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Iae0c70ab713a0d95fa7bc447f8a79e244c5a4258
-
- 20 Ock, 2014 2 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: I2cdeefc5a5a1ee970ee3da5191ceae28b58340a1
-
Caolán McNamara yazdı
Change-Id: Ic27b230cc9dce366f281ff720ded5873e94f6191
-
- 14 Kas, 2013 1 kayıt (commit)
-
-
Stephan Bergmann yazdı
Change-Id: I8a7974baab4e32aa7fc53c4220ec4cb79e7b3074
-
- 21 Eki, 2013 2 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Id7e67d7e7bd4be6600a296a846512e9076c9df23
-
Thomas Arnhold yazdı
WaE: enumeration values 'USCRIPT_CAUCASIAN_ALBANIAN' and 'USCRIPT_MAHAJANI' not handled in switch [-Wswitch] With ICU 4.9 there is no major/minor anymore, it's only ICU 49 or ICU 52. So adapt the previous check, too. Change-Id: Id938937b305165d407ced473ea1725e97efe9124 See: http://icu-project.org/apiref/icu4c-latest/uscript_8h.html Reviewed-on: https://gerrit.libreoffice.org/6365Tested-by:
Caolán McNamara <caolanm@redhat.com> Reviewed-by:
Caolán McNamara <caolanm@redhat.com>
-
- 09 Agu, 2013 1 kayıt (commit)
-
-
Takeshi Abe yazdı
Change-Id: I5d51d7e01913ac9917578f8c9789312af9be3638
-
- 29 Tem, 2013 1 kayıt (commit)
-
-
Takeshi Abe yazdı
Change-Id: Ib78b25641ae20a3eb23545649f08b963e34c74ff
-
- 03 Haz, 2013 1 kayıt (commit)
-
-
Mark Wielaard yazdı
commit 30c303 "Make charmap.cxx compile with icu >= 4.4." was incomplete and had wrong version checks. After ICU 4.8 (4.8.1.1) the next version of ICU was 49 (49.1) so U_ICU_VERSION_MAJOR_NUM contains two digets (49), earlier that it was just one digit (4). The correct header to include to do version checks is unicode/uversion.h. USCRIPT_MANDAEAN is the old alias of USCRIPT_MANDAIC (same numeric value). U_JG_FARSI_YEH is only available since ICU 4.4. Note that on older icu versions (4.2.1) the 200B (ZWSP) Zero Width Space breakiterator testcase fails (others succeed). Change-Id: If73c1402239a28546077437e9382f0bd38642bad Reviewed-on: https://gerrit.libreoffice.org/4139Reviewed-by:
Luboš Luňák <l.lunak@suse.cz> Tested-by:
Luboš Luňák <l.lunak@suse.cz>
-