Ignore:
Timestamp:
Apr 27, 2009 7:18:38 PM (15 years ago)
Author:
nanang
Message:

Cleaned up bunch of compile warnings. Special for libgsmcodec, its warning level is reduced from 4 to 3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/vs-reorg2/third_party/srtp/include/srtp_priv.h

    r1730 r2654  
    6060 */ 
    6161  
     62#ifdef _MSC_VER 
     63#   pragma warning(push) 
     64#   pragma warning(disable:4214) // bit field types other than int 
     65#endif 
     66 
    6267#ifndef WORDS_BIGENDIAN 
    6368 
     
    6873 * fully pack the bit fields. 
    6974 */ 
    70  
    7175typedef struct { 
    7276  unsigned char cc:4;   /* CSRC count             */ 
     
    96100 
    97101#endif 
     102 
     103#ifdef _MSC_VER 
     104#   pragma warning( pop )  
     105#endif 
     106 
    98107 
    99108typedef struct { 
Note: See TracChangeset for help on using the changeset viewer.