summaryrefslogtreecommitdiff
path: root/Source/cmOutputConverter.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-04-27 07:00:00 -0400
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-04-27 07:38:47 -0400
commit4fd28b9911934553e3dde77ff395f4e9494eaa2e (patch)
tree3ad2bc9ede9fc8cb4dd3b59f68730b57b3574868 /Source/cmOutputConverter.cxx
parenta4071b53da1d1356f98685e2065bd3d8904d4930 (diff)
downloadcmake-4fd28b9911934553e3dde77ff395f4e9494eaa2e.tar.gz
cmOutputConverter::GetFortranFormat(): delete const char* overload
Diffstat (limited to 'Source/cmOutputConverter.cxx')
-rw-r--r--Source/cmOutputConverter.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx
index 68bf3af756..dc324ccb58 100644
--- a/Source/cmOutputConverter.cxx
+++ b/Source/cmOutputConverter.cxx
@@ -170,15 +170,6 @@ cmOutputConverter::FortranFormat cmOutputConverter::GetFortranFormat(
return format;
}
-cmOutputConverter::FortranFormat cmOutputConverter::GetFortranFormat(
- const char* value)
-{
- if (!value) {
- return FortranFormatNone;
- }
- return GetFortranFormat(cm::string_view(value));
-}
-
void cmOutputConverter::SetLinkScriptShell(bool linkScriptShell)
{
this->LinkScriptShell = linkScriptShell;