Clang compiler

Disabling temporarily a warning

To disable a warning (-WWarning) for a portion of code :

#ifdef CPE_C_CLANG
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-WWarning"
#endif
#ifdef CPE_C_CLANG
# pragma clang diagnostic pop
#endif

The #ifdef … #endif are some Epeios project related stuff and are not required.