@@ -1292,7 +1292,7 @@ CMS_STATUS CMS::update(bool &x)
12921292 }
12931293}
12941294
1295- CMS_STATUS CMS::update (char &x)
1295+ CMS_STATUS CMS::update (int8_t &x)
12961296{
12971297 if (NULL != updater) {
12981298 return (updater->update (x));
@@ -1301,7 +1301,7 @@ CMS_STATUS CMS::update(char &x)
13011301 }
13021302}
13031303
1304- CMS_STATUS CMS::update (unsigned char &x)
1304+ CMS_STATUS CMS::update (uint8_t &x)
13051305{
13061306 if (NULL != updater) {
13071307 return (updater->update (x));
@@ -1310,7 +1310,7 @@ CMS_STATUS CMS::update(unsigned char &x)
13101310 }
13111311}
13121312
1313- CMS_STATUS CMS::update (short int &x)
1313+ CMS_STATUS CMS::update (int16_t &x)
13141314{
13151315 if (NULL != updater) {
13161316 return (updater->update (x));
@@ -1319,7 +1319,7 @@ CMS_STATUS CMS::update(short int &x)
13191319 }
13201320}
13211321
1322- CMS_STATUS CMS::update (unsigned short int &x)
1322+ CMS_STATUS CMS::update (uint16_t &x)
13231323{
13241324 if (NULL != updater) {
13251325 return (updater->update (x));
@@ -1328,7 +1328,7 @@ CMS_STATUS CMS::update(unsigned short int &x)
13281328 }
13291329}
13301330
1331- CMS_STATUS CMS::update (int &x)
1331+ CMS_STATUS CMS::update (int32_t &x)
13321332{
13331333 if (NULL != updater) {
13341334 return (updater->update (x));
@@ -1337,7 +1337,7 @@ CMS_STATUS CMS::update(int &x)
13371337 }
13381338}
13391339
1340- CMS_STATUS CMS::update (unsigned int &x)
1340+ CMS_STATUS CMS::update (uint32_t &x)
13411341{
13421342 if (NULL != updater) {
13431343 return (updater->update (x));
@@ -1391,7 +1391,7 @@ CMS_STATUS CMS::update(long double &x)
13911391 }
13921392}
13931393
1394- CMS_STATUS CMS::update (char *x, unsigned int len)
1394+ CMS_STATUS CMS::update (int8_t *x, unsigned int len)
13951395{
13961396 if (NULL != updater) {
13971397 return (updater->update (x, len));
@@ -1400,7 +1400,7 @@ CMS_STATUS CMS::update(char *x, unsigned int len)
14001400 }
14011401}
14021402
1403- CMS_STATUS CMS::update (unsigned char *x, unsigned int len)
1403+ CMS_STATUS CMS::update (uint8_t *x, unsigned int len)
14041404{
14051405 if (NULL != updater) {
14061406 return (updater->update (x, len));
@@ -1409,7 +1409,7 @@ CMS_STATUS CMS::update(unsigned char *x, unsigned int len)
14091409 }
14101410}
14111411
1412- CMS_STATUS CMS::update (short *x, unsigned int len)
1412+ CMS_STATUS CMS::update (int16_t *x, unsigned int len)
14131413{
14141414 if (NULL != updater) {
14151415 return (updater->update (x, len));
@@ -1418,7 +1418,7 @@ CMS_STATUS CMS::update(short *x, unsigned int len)
14181418 }
14191419}
14201420
1421- CMS_STATUS CMS::update (unsigned short *x, unsigned int len)
1421+ CMS_STATUS CMS::update (uint16_t *x, unsigned int len)
14221422{
14231423 if (NULL != updater) {
14241424 return (updater->update (x, len));
@@ -1427,7 +1427,7 @@ CMS_STATUS CMS::update(unsigned short *x, unsigned int len)
14271427 }
14281428}
14291429
1430- CMS_STATUS CMS::update (int *x, unsigned int len)
1430+ CMS_STATUS CMS::update (int32_t *x, unsigned int len)
14311431{
14321432 if (NULL != updater) {
14331433 return (updater->update (x, len));
@@ -1436,7 +1436,7 @@ CMS_STATUS CMS::update(int *x, unsigned int len)
14361436 }
14371437}
14381438
1439- CMS_STATUS CMS::update (unsigned int *x, unsigned int len)
1439+ CMS_STATUS CMS::update (uint32_t *x, unsigned int len)
14401440{
14411441 if (NULL != updater) {
14421442 return (updater->update (x, len));
0 commit comments