diff options
author | Brad King <brad.king@kitware.com> | 2023-02-24 13:33:58 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-02-24 13:34:24 (GMT) |
commit | 1d939b43b2833c845db3588cef80a7e55edc6a53 (patch) | |
tree | 8e47f96f71c364ff1a7b50adc2b9030b6e55eaa9 /Help/guide/tutorial/Step9/MathFunctions/mysqrt.h | |
parent | 7552276e6ecfa918fd54978d939ab7532920346e (diff) | |
parent | 8ddf32196c6bca9c3a80414222327eebd5d51835 (diff) | |
download | CMake-1d939b43b2833c845db3588cef80a7e55edc6a53.zip CMake-1d939b43b2833c845db3588cef80a7e55edc6a53.tar.gz CMake-1d939b43b2833c845db3588cef80a7e55edc6a53.tar.bz2 |
Merge topic 'tutorial_dependency_inversion'
8ddf32196c Tutorial: Refactor MathFunctions code
Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !7789
Diffstat (limited to 'Help/guide/tutorial/Step9/MathFunctions/mysqrt.h')
-rw-r--r-- | Help/guide/tutorial/Step9/MathFunctions/mysqrt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/guide/tutorial/Step9/MathFunctions/mysqrt.h b/Help/guide/tutorial/Step9/MathFunctions/mysqrt.h new file mode 100644 index 0000000..593d41e --- /dev/null +++ b/Help/guide/tutorial/Step9/MathFunctions/mysqrt.h @@ -0,0 +1,7 @@ +#pragma once + +namespace mathfunctions { +namespace detail { +double mysqrt(double x); +} +} |