diff options
author | scivision <scivision@users.noreply.github.com> | 2023-08-21 04:00:53 (GMT) |
---|---|---|
committer | scivision <scivision@users.noreply.github.com> | 2023-08-21 04:01:21 (GMT) |
commit | d2c30ac06363ed3720b8934492d90a5a9416d7c3 (patch) | |
tree | bddaa751d388ccfadd15944b6527316590c56fd9 /Modules/CheckCXXSymbolExists.cmake | |
parent | 1368e219d95c471cfc5456172afaca22e5c24c7c (diff) | |
download | CMake-d2c30ac06363ed3720b8934492d90a5a9416d7c3.zip CMake-d2c30ac06363ed3720b8934492d90a5a9416d7c3.tar.gz CMake-d2c30ac06363ed3720b8934492d90a5a9416d7c3.tar.bz2 |
Help:CheckCXXSymbolExists: refer to CheckSourceCompiles
This was just missed in the earlier MR.
Diffstat (limited to 'Modules/CheckCXXSymbolExists.cmake')
-rw-r--r-- | Modules/CheckCXXSymbolExists.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CheckCXXSymbolExists.cmake b/Modules/CheckCXXSymbolExists.cmake index 569dafd..d807c17 100644 --- a/Modules/CheckCXXSymbolExists.cmake +++ b/Modules/CheckCXXSymbolExists.cmake @@ -33,7 +33,7 @@ Check if a symbol exists as a function, variable, or macro in ``C++``. function. Since there is no reliable way to predict whether a given function in the system environment may be defined as an overloaded function or may be an overloaded function on other systems or will become so in the future, it - is generally advised to use the :module:`CheckCXXSourceCompiles` module for + is generally advised to use the :module:`CheckSourceCompiles` module for checking any function symbol (unless somehow you surely know the checked function is not overloaded on other systems or will not be so in the future). |