HomeSort by relevance Sort by last modified time
    Searched full:short_t (Results 1 - 1 of 1) sorted by null

  /external/clang/test/Sema/
format-strings-enum-fixed-type.cpp 45 typedef short short_t; typedef
46 typedef enum : short_t { ShortConstant = 0 } ShortEnum;
49 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}}
59 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}}
67 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}}
70 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}}

Completed in 107 milliseconds