You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 line
289 B

  1. #-*- mode: snippet; coding: utf-8 -*-
  2. # name: insert clang pragma to ignore some warning
  3. # key: cprag/
  4. # --
  5. #ifdef __clang__
  6. #pragma clang diagnostic push
  7. #pragma clang diagnostic ignored "-W${1:somewarning}"
  8. #endif
  9. ${0:some_evil_codez}
  10. #ifdef __clang__
  11. #pragma clang diagnostic pop
  12. #endif