[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / implicit-built-Werror-using-W / convert.h
blob0ed02bc793bd1e73aa0f7cd91d302ea57078a47f
1 #ifdef USE_PRAGMA
2 #pragma clang diagnostic push
3 #pragma clang diagnostic warning "-Wshorten-64-to-32"
4 #endif
5 template <class T> int convert(T V) { return V; }
6 #ifdef USE_PRAGMA
7 #pragma clang diagnostic pop
8 #endif