Changeset 814
- Timestamp:
- 01/13/16 14:06:32 (7 years ago)
- Location:
- XIOS/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/src/event_client.cpp
r731 r814 8 8 namespace xios 9 9 { 10 const size_t CEventClient::headerSize = sizeof(int) + sizeof(size_t) + sizeof(int) + sizeof(classId) + sizeof(typeId); 10 const size_t CEventClient::headerSize = sizeof(int) + sizeof(size_t) + sizeof(int) + sizeof(int) + sizeof(int); // The two last one signify sizeof(classId) and sizeof(typeId) 11 11 12 12 13 CEventClient::CEventClient(int classId_, int typeId_) -
XIOS/trunk/src/utils.hpp
r776 r814 141 141 union TypeToBytes { 142 142 T value; 143 unsigned char bytes[sizeof( value)];143 unsigned char bytes[sizeof(T)]; 144 144 }; 145 145
Note: See TracChangeset
for help on using the changeset viewer.