diff --git a/stl_concept_covering.cpp b/stl_concept_covering.cpp index 338d23f..6d3144d 100644 --- a/stl_concept_covering.cpp +++ b/stl_concept_covering.cpp @@ -3,6 +3,9 @@ // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) +// This file doesn't work on other compilers. +#if defined(__GNUC__) || defined(__KCC) + #include #include #include @@ -905,3 +908,9 @@ main() } return 0; } + +#else + +int main() {} + +#endif