summaryrefslogtreecommitdiffstats
path: root/Source/cmProperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmProperty.h')
-rw-r--r--Source/cmProperty.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmProperty.h b/Source/cmProperty.h
index 1e03c3f..0781109 100644
--- a/Source/cmProperty.h
+++ b/Source/cmProperty.h
@@ -4,8 +4,6 @@
#include "cmConfigure.h" // IWYU pragma: keep
-#include <string>
-
class cmProperty
{
public:
@@ -22,15 +20,3 @@ public:
INSTALL
};
};
-
-using cmProp = const std::string*;
-
-inline const char* cmToCStr(cmProp p)
-{
- return p ? p->c_str() : nullptr;
-}
-
-inline const char* cmToCStrSafe(cmProp p)
-{
- return p ? p->c_str() : "";
-}