diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-04-26 14:13:46 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-04-27 11:37:43 -0400 |
commit | 76ece169746f50652771a9fa9adc66d207e9d6f7 (patch) | |
tree | da27731b6e0f280baade6b9ec5f0b6929a2dbf22 /src/tools/msvc/VSObjectFactory.pm | |
parent | d4f16d50713077e69f8833df6b99d1eab0be1c33 (diff) | |
download | postgresql-76ece169746f50652771a9fa9adc66d207e9d6f7.tar.gz postgresql-76ece169746f50652771a9fa9adc66d207e9d6f7.zip |
perltidy: Add option --nooutdent-long-comments
Diffstat (limited to 'src/tools/msvc/VSObjectFactory.pm')
-rw-r--r-- | src/tools/msvc/VSObjectFactory.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/msvc/VSObjectFactory.pm b/src/tools/msvc/VSObjectFactory.pm index d774f69b8b2..eea59c5e4fc 100644 --- a/src/tools/msvc/VSObjectFactory.pm +++ b/src/tools/msvc/VSObjectFactory.pm @@ -54,7 +54,7 @@ sub CreateSolution return new VS2015Solution(@_); } -# visual 2017 hasn't changed the nmake version to 15, so adjust the check to support it. + # visual 2017 hasn't changed the nmake version to 15, so adjust the check to support it. elsif (($visualStudioVersion ge '14.10') or ($visualStudioVersion eq '15.00')) { @@ -101,7 +101,7 @@ sub CreateProject return new VC2015Project(@_); } -# visual 2017 hasn't changed the nmake version to 15, so adjust the check to support it. + # visual 2017 hasn't changed the nmake version to 15, so adjust the check to support it. elsif (($visualStudioVersion ge '14.10') or ($visualStudioVersion eq '15.00')) { @@ -137,7 +137,7 @@ sub _GetVisualStudioVersion { my ($major, $minor) = @_; -# visual 2017 hasn't changed the nmake version to 15, so still using the older version for comparison. + # visual 2017 hasn't changed the nmake version to 15, so still using the older version for comparison. if ($major > 14) { carp |