1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-30 05:24:26 +01:00

Change CheckCXX11Features into CheckCXXFeatures

This commit is contained in:
Matias Fontanini
2016-02-18 20:11:36 -08:00
parent 3c595e6225
commit bd31b3648f
24 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
int main(void)
{
if (!__func__)
return 1;
if (!(*__func__))
return 1;
return 0;
}