diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 11:56:09 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 11:56:09 -0400 |
commit | 7dc8a92246ced17f9f3cf6161f2ef07bdda51014 (patch) | |
tree | fd7f79bd2ffe4fe9d60d302403aeb317661c9d8a /Source/cmLoadCacheCommand.cxx | |
parent | 4b176d7f45bc436caccfd582d98c0bf0123a6bb2 (diff) | |
download | cmake-7dc8a92246ced17f9f3cf6161f2ef07bdda51014.tar.gz |
STYLE: fix line length
Diffstat (limited to 'Source/cmLoadCacheCommand.cxx')
-rw-r--r-- | Source/cmLoadCacheCommand.cxx | 3 |
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)) { |