** Warning **

Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr at /lxr/lib/LXR/Common.pm line 1113.

Last-Modified: Sun, 21 Jun 2025 01:29:21 GMT Content-Type: text/html; charset=utf-8 /CMSSW_15_1_X_2025-06-20-2300/FWCore/Utilities/test/typedefs_t.cpp
Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:15

0001 #include "FWCore/Utilities/interface/typedefs.h"
0002 
0003 // Will fail compilation if any assert is violated.
0004 int main() {
0005   static_assert(sizeof(cms_int8_t) == 1, "type does not match size problem");
0006   static_assert(sizeof(cms_uint8_t) == 1, "type does not match size problem");
0007   static_assert(sizeof(cms_int16_t) == 2, "type does not match size problem");
0008   static_assert(sizeof(cms_uint16_t) == 2, "type does not match size problem");
0009   static_assert(sizeof(cms_int32_t) == 4, "type does not match size problem");
0010   static_assert(sizeof(cms_uint32_t) == 4, "type does not match size problem");
0011   static_assert(sizeof(cms_int64_t) == 8, "type does not match size problem");
0012   static_assert(sizeof(cms_uint64_t) == 8, "type does not match size problem");
0013 }