Open
Description
Repro: https://godbolt.org/z/6jdqMrjKs
The following code:
extern "C"
{
typedef int int_t;
}
should not issue any warnings with modernize-use-using
because the typedef is inside an extern "C"
block.
Repro: https://godbolt.org/z/6jdqMrjKs
The following code:
extern "C"
{
typedef int int_t;
}
should not issue any warnings with modernize-use-using
because the typedef is inside an extern "C"
block.