Changeset 3468
- Timestamp:
- Mar 22, 2011 9:38:49 AM (14 years ago)
- Location:
- pjproject/branches/projects/2.0-dev/pjlib/include/pj
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjlib/include/pj/compat/cc_gcc.h
r2407 r3468 72 72 #define PJ_UNREACHED(x) 73 73 74 #define PJ_ALIGN_DATA(declaration, alignment) declaration _attribute_ ((aligned (alignment))) 75 76 74 77 #endif /* __PJ_COMPAT_CC_GCC_H__ */ 75 78 -
pjproject/branches/projects/2.0-dev/pjlib/include/pj/compat/cc_msvc.h
r2407 r3468 81 81 #define PJ_UNREACHED(x) 82 82 83 #define PJ_ALIGN_DATA(declaration, alignment) __declspec(align(alignment)) declaration 84 85 83 86 #endif /* __PJ_COMPAT_CC_MSVC_H__ */ 84 87 -
pjproject/branches/projects/2.0-dev/pjlib/include/pj/config.h
r3316 r3468 45 45 #endif 46 46 47 /* PJ_ALIGN_DATA is compiler specific directive to align data address */ 48 #ifndef PJ_ALIGN_DATA 49 # error "PJ_ALIGN_DATA is not defined!" 50 #endif 47 51 48 52 /********************************************************************
Note: See TracChangeset
for help on using the changeset viewer.