summaryrefslogtreecommitdiffstats
path: root/Source/cmPolicies.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2009-06-15 16:33:21 (GMT)
committerKen Martin <ken.martin@kitware.com>2009-06-15 16:33:21 (GMT)
commit3dadbdf3fdb6172713990459b648deae44bfa161 (patch)
tree88b95f1ac4259354bfdcbbb7706f256ad2cf517d /Source/cmPolicies.cxx
parentf4b3bdc6bef35e10791e6dd013edd58f70d0b33a (diff)
downloadCMake-3dadbdf3fdb6172713990459b648deae44bfa161.zip
CMake-3dadbdf3fdb6172713990459b648deae44bfa161.tar.gz
CMake-3dadbdf3fdb6172713990459b648deae44bfa161.tar.bz2
COMP: fix line length
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r--Source/cmPolicies.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx
index 61093fb..5e80e2f 100644
--- a/Source/cmPolicies.cxx
+++ b/Source/cmPolicies.cxx
@@ -358,15 +358,16 @@ cmPolicies::cmPolicies()
this->DefinePolicy(
CMP0012, "CMP0012",
- "In CMake versions prior to 2.6.5 the only boolean constants were 0 and 1. "
- "Other boolean constants such as true, false, yes, no, "
+ "In CMake versions prior to 2.6.5 the only boolean constants were 0 "
+ "and 1. Other boolean constants such as true, false, yes, no, "
"on, off, y, n, notfound, ignore (all case insensitive) were recognized "
"in some cases but not all. In later versions of cmake these values are "
"treated as boolean constants more consistently and should not be used "
"as variable names. Please do not use them as variable names.",
- "The OLD behavior for this policy is to allow variables to have names such as "
- "true and to dereference them. "
- "The NEW behavior for this policy is to treat strings like true as a boolean constant.",
+ "The OLD behavior for this policy is to allow variables to have names "
+ "such as true and to dereference them. "
+ "The NEW behavior for this policy is to treat strings like true as a "
+ "boolean constant.",
2,6,5, cmPolicies::WARN);
}