mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-1099 Make all string data const
X-SVN-Rev: 7468
This commit is contained in:
parent
c6f5b3eedc
commit
644f35d609
2 changed files with 4 additions and 4 deletions
|
@ -206,8 +206,8 @@ static const uint32_t staticProps32Table[]={
|
|||
* loaded uprops.dat -
|
||||
* for a description of the file format, see icu/source/tools/genprops/store.c
|
||||
*/
|
||||
#define DATA_NAME "uprops"
|
||||
#define DATA_TYPE "dat"
|
||||
static const char DATA_NAME[] = "uprops";
|
||||
static const char DATA_TYPE[] = "dat";
|
||||
|
||||
static UDataMemory *propsData=NULL;
|
||||
|
||||
|
|
|
@ -77,8 +77,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#define DATA_NAME "cnvalias"
|
||||
#define DATA_TYPE "dat"
|
||||
static const char DATA_NAME[] = "cnvalias";
|
||||
static const char DATA_TYPE[] = "dat";
|
||||
|
||||
static UDataMemory *aliasData=NULL;
|
||||
static const uint16_t *aliasTable=NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue