Fredrik Roubert
6ca288559f
ICU-22936 Replace all ICU4C code that uses UBool as an integer.
2024-10-07 14:40:16 +02:00
Fredrik Roubert
0bf8a95309
ICU-22793 Remove superfluous return value typecasts to UBool.
2024-09-19 17:11:38 +02:00
Fredrik Roubert
0178a07a26
ICU-22793 Clang-Tidy: google-readability-casting
...
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/google/readability-casting.html
2024-07-04 22:32:12 +02:00
Fredrik Roubert
5401c12018
ICU-22621 Clang-Tidy: modernize-use-nullptr
...
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/modernize/use-nullptr.html
2024-03-15 14:31:54 +01:00
Markus Scherer
b6dcc95d3c
ICU-21833 remove redundant void parameter lists
...
See #2351
2023-03-02 09:31:57 -08:00
Frank Yung-Fong Tang
80414a247b
ICU-22224 Enable UBSAN and fix breakage
...
See #2324
2023-02-27 17:31:49 -08:00
Fredrik Roubert
2de88f9d9c
ICU-21833 Replace UChar with char16_t in all C++ code.
2023-02-06 19:27:44 +01:00
Fredrik Roubert
2e0d30cfcf
ICU-21833 Replace NULL with nullptr in all C++ code.
2023-02-03 20:20:38 +01:00
Frank Tang
da5d3e0c5b
ICU-22206 Fix unsafe mix of UBool
...
Fix "unsafe mix of type 'UBool' and type 'bool' in operation:
2022-11-18 10:36:55 -08:00
Fredrik Roubert
030fa1a479
ICU-21148 Consistently use standard lowercase true/false everywhere.
...
This is the normal standard way in C, C++ as well as Java and there's no
longer any reason for ICU to be different. The various internal macros
providing custom boolean constants can all be deleted and code as well
as documentation can be updated to use lowercase true/false everywhere.
2022-09-07 20:56:33 +02:00
Andy Heninger
85705f04e0
ICU-21960 C++20 Warnings from ATOMIC_VAR_INIT
...
Remove the ICU macros ATOMIC_INT32_T_INITIALIZER and U_INITONCE_INITIALIZER,
which made use of C++ ATOMIC_VAR_INIT, which has been removed from C++20.
With modern C++ features being available, these macros no longer served
any real need.
2022-05-17 15:45:06 -07:00
luz paz
73eca0a9c9
ICU-21580 Fix typos in icu4c/
...
Found via `codespell -q 3 -L ans,anumber,atleast,ba,bre,hace,nd,nin,ois,rsource,som,sur,tht -S icu4c/source/data/zone,icu4c/source/data/lang`
ICU-21580 Fix source (related) typos
ICU-21580 Revert extraneous auto-encoding
ICU-21580 Re-add previous reverted fix without auto-encoding
2021-07-19 13:22:38 -05:00
Erik Torres Aguilar
6eea259143
ICU-21018 Fix typos across repo that start with letter C
...
See #1525
2021-01-06 15:15:26 -08:00
Andy Heninger
afa9b9b48e
ICU-20588 UMutex, add cleanup of underlying mutexes, and simplify usage model
2019-05-24 13:24:59 -07:00
Andy Heninger
b772241b52
ICU-20520 UMutex refactoring.
...
- Use STATIC_NEW for mutex creation, to avoid order-of-destruction problems
by avoiding destruction altogether, while avoiding memory leak reports.
- Remove UConditionVar, replace with direct use of std::condition_variable
2019-05-07 13:50:49 -07:00
Andy Heninger
a97cfb01b9
ICU-20570 UInitOnce instances, add explicit initialization where it was missing.
2019-04-24 18:15:13 -07:00
Andy Heninger
bc4bb89af2
ICU-20488 mutex static constructor fixes.
...
Remove the dependencies from the ICU library code on static constructors
that were introduced by using std::mutex and condition variables. The
mutexes are lazily initialized by embedding them as local static variables
in getter functions, and relying on the C++ compiler/runtime to do thread
safe initialization of them.
2019-03-12 09:52:16 -07:00
Andy Heninger
278b9cb735
ICU-20079 integer overflow & divide by zero sanitizer fixes. ( #67 )
2018-09-27 14:27:38 -07:00
Daniel Ju
b13c951348
ICU-20043 ICU-13214 ICU-13764 MSVC W3 and W4 warning cleanup ( #53 )
...
Cleaned up all of the MSVC W3 warnings and most of the W4 warnings in the common and i18n projects.
2018-09-27 14:27:38 -07:00
Andy Heninger
b2b346c183
ICU-13593 Fix heap-buffer-overflow in TestIDNAMonkeyTest
...
X-SVN-Rev: 41526
2018-06-14 23:12:42 +00:00
Markus Scherer
8ccca58d0c
ICU-12911 remove UBiDiProps except inside its .cpp file, and uprv_haveProperties()
...
X-SVN-Rev: 40923
2018-02-15 19:01:29 +00:00
Andy Heninger
04448b004f
ICU-12764 UTF-8 source files, update file encoding comments.
...
X-SVN-Rev: 39641
2017-02-03 18:57:23 +00:00
Andy Heninger
242e02c388
ICU-12764 icu4c utf-8 source files, update Copyright notices.
...
X-SVN-Rev: 39583
2017-01-20 00:20:31 +00:00
Michael Ow
61607c2773
ICU-12564 Update copyright notice in trunk
...
X-SVN-Rev: 38848
2016-06-15 18:58:17 +00:00
Yoshito Umaoka
00ca13e126
ICU-12564 Reverted r38761 and r38762, because we want to prepend the Unicode copyright for existing source files, instead of replacing copyright comments.
...
X-SVN-Rev: 38776
2016-05-31 21:45:07 +00:00
Michael Ow
c9f199a30f
ICU-12564 Update copyright notice in ICU4C
...
X-SVN-Rev: 38761
2016-05-26 22:32:17 +00:00
Fredrik Roubert
7f4b8d106b
ICU-12012 Replace all sizeof p / sizeof *p with UPRV_LENGTHOF().
...
R=markus.icu@gmail.com
Review URL: https://codereview.appspot.com/285520043 .
X-SVN-Rev: 38337
2016-02-23 10:40:09 +00:00
Steven R. Loomis
7e6c572256
ICU-10774 fix a knownissue: Collator::getAvailableLocales calculation.
...
Also, replace uhash_nextElement's parameter "-1" with UHASH_FIRST for clarity.
Also, improve service registration debugging code
X-SVN-Rev: 36836
2014-12-09 23:54:56 +00:00
Markus Scherer
459c88cc14
ICU-11129 simplify string buffer handling
...
X-SVN-Rev: 36461
2014-09-11 15:34:38 +00:00
Steven R. Loomis
4345b76644
ICU-10881 merge from branch - conservative fixes to some warnings
...
X-SVN-Rev: 36449
2014-09-11 05:25:13 +00:00
Markus Scherer
8f38199123
ICU-10365 fix namespace issue: icu::UInitOnce
...
X-SVN-Rev: 34252
2013-09-10 00:34:12 +00:00
Andy Heninger
ae87a3acc2
ICU-10051 Mutexes: introduce UInitOnce; remove UMTX_CHECK; replace all uses of UMTX_CHECK. All the directories this time.
...
X-SVN-Rev: 33788
2013-06-01 03:37:16 +00:00
Andy Heninger
803ac8f33c
ICU-9461 Mutex Implementation Rework, merge from devel branch.
...
X-SVN-Rev: 32530
2012-10-05 21:22:02 +00:00
George Rhoten
1384c72211
ICU-9456 Reduce writable/relocatable data.
...
X-SVN-Rev: 32149
2012-08-10 16:41:38 +00:00
Markus Scherer
b5e1330176
ICU-7264 merge Unicode 6.0 into trunk from branches/markus/uni60 -r 28339:28657
...
X-SVN-Rev: 28661
2010-09-21 00:12:49 +00:00
Michael Grady
467cf876fc
ICU-7948 Fix leak in usprep_getProfile when 2 threads race to insert profile data into hash
...
X-SVN-Rev: 28627
2010-09-16 00:49:01 +00:00
Markus Scherer
5cb38459a6
ICU-7273 remove #include unormimp.h where not used any more
...
X-SVN-Rev: 27667
2010-02-25 00:21:02 +00:00
Markus Scherer
7a3a89e61f
ICU-7273 remove now-unused unorm.icu, and small changes parallel with Java
...
X-SVN-Rev: 27562
2010-02-13 23:15:05 +00:00
Markus Scherer
a31a559ede
ICU-7273 namespace fix
...
X-SVN-Rev: 27366
2010-01-21 23:28:30 +00:00
Markus Scherer
d73228968d
ICU-7247 use LocalMemory & MaybeStackArray in some places
...
X-SVN-Rev: 26964
2009-11-21 22:04:55 +00:00
Markus Scherer
9fca8644b5
ICU-7182 remove support for Unicode Normalization behavior before corrigendum 5 (PRI #29 )
...
X-SVN-Rev: 26952
2009-11-19 00:46:36 +00:00
Andy Heninger
ff17dd72c1
ICU-3547 remove unnecessary umtx_init() calls.
...
X-SVN-Rev: 26224
2009-07-03 00:36:51 +00:00
Andy Heninger
cc9ed5eb45
ICU-6799 fix compiler warnings
...
X-SVN-Rev: 25668
2009-03-27 17:08:12 +00:00
Yoshito Umaoka
eb175516be
ICU-6238 Support standard stringprep profiles in ICU4C. Merging changes from the work branch to the trunk.
...
X-SVN-Rev: 25357
2009-02-02 16:16:07 +00:00
George Rhoten
a1e9519c40
ICU-6176 Fix some Coverity warnings
...
X-SVN-Rev: 23416
2008-02-13 10:05:32 +00:00
George Rhoten
967b65a458
ICU-5889 Fix some logic errors uncovered by BEAM.
...
X-SVN-Rev: 22558
2007-08-29 02:57:42 +00:00
George Rhoten
dbc0d1d9ee
ICU-5349 Use UMTX_CHECK for double check locking.
...
X-SVN-Rev: 20176
2006-08-29 04:57:05 +00:00
George Rhoten
e41abf8ec5
ICU-5032 Improve code coverage through refactorization
...
X-SVN-Rev: 19671
2006-05-27 04:01:15 +00:00
George Rhoten
ca09e63755
ICU-4707 Fix some compiler warnings.
...
X-SVN-Rev: 19545
2006-04-14 16:01:20 +00:00
George Rhoten
d96b2b6088
ICU-4703 Fix memory leaks when functions start failing, and fix a threading issue.
...
X-SVN-Rev: 19460
2006-03-28 04:08:34 +00:00