summaryrefslogtreecommitdiff
path: root/config_os.h
diff options
context:
space:
mode:
Diffstat (limited to 'config_os.h')
-rw-r--r--config_os.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/config_os.h b/config_os.h
index c6cd0eae..107e4452 100644
--- a/config_os.h
+++ b/config_os.h
@@ -27,9 +27,10 @@
// It is OK to remove the hard stop below, but you are on your own.
// After building the library be sure to run self tests described
// https://www.cryptopp.com/wiki/Release_Process#Self_Tests
-// Some relevant bug reports can be found at:
-// * Clang: http://github.com/weidai11/cryptopp/issues/147
-#if (defined(_MSC_VER) && defined(__clang__) && !(defined( __clang_analyzer__)) && !defined(__INTEL_LLVM_COMPILER))
+// The problems with Clang pretending to be other compilers is
+// discussed at http://github.com/weidai11/cryptopp/issues/147.
+#if (defined(_MSC_VER) && defined(__clang__) && \
+ !(defined( __clang_analyzer__)) && !defined(__INTEL_LLVM_COMPILER))
# error: "Unsupported configuration"
#endif