summaryrefslogtreecommitdiff
path: root/config_os.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-04-21 13:41:35 -0400
committerJeffrey Walton <noloader@gmail.com>2021-04-21 13:41:35 -0400
commit0629ed043ad8006ae2d88f8eb219e730f2e551aa (patch)
treea8b93e400f6403864b33ae691022bb816f360896 /config_os.h
parentb206071aa7cc82d90cc86a82fd21f82450120e96 (diff)
downloadcryptopp-git-0629ed043ad8006ae2d88f8eb219e730f2e551aa.tar.gz
Update compiler versions
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