blob: c4940ef5ffe6adc2bce90490fffa2860ab0eaf0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
#undef LLVM_REVISION
#undef LLVM_REPOSITORY
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
|