summaryrefslogtreecommitdiff
path: root/Source/cmLoadCacheCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 11:56:09 -0400
committerKen Martin <ken.martin@kitware.com>2006-05-12 11:56:09 -0400
commit7dc8a92246ced17f9f3cf6161f2ef07bdda51014 (patch)
treefd7f79bd2ffe4fe9d60d302403aeb317661c9d8a /Source/cmLoadCacheCommand.cxx
parent4b176d7f45bc436caccfd582d98c0bf0123a6bb2 (diff)
downloadcmake-7dc8a92246ced17f9f3cf6161f2ef07bdda51014.tar.gz
STYLE: fix line length
Diffstat (limited to 'Source/cmLoadCacheCommand.cxx')
-rw-r--r--Source/cmLoadCacheCommand.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLoadCacheCommand.cxx b/Source/cmLoadCacheCommand.cxx
index 1cd8abccfe..062a7a66ce 100644
--- a/Source/cmLoadCacheCommand.cxx
+++ b/Source/cmLoadCacheCommand.cxx
@@ -205,7 +205,8 @@ bool cmLoadCacheCommand::ParseEntry(const char* entry, std::string& var,
// input line is: key:type=value
cmsys::RegularExpression reg("^([^:]*):([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
// input line is: "key":type=value
- cmsys::RegularExpression regQuoted("^\"([^\"]*)\":([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
+ cmsys::RegularExpression
+ regQuoted("^\"([^\"]*)\":([^=]*)=(.*[^\t ]|[\t ]*)[\t ]*$");
bool flag = false;
if(regQuoted.find(entry))
{