diff options
author | Jose <jose@zeroc.com> | 2011-05-17 00:28:49 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2011-05-17 00:28:49 +0200 |
commit | 8fd299eecd81950b4f44d51ab2d9d80c955c9f9e (patch) | |
tree | bdf4c3a6975cd7212d41d9e4b2ac4cac1a313cfc /cpp/src/Slice/Util.cpp | |
parent | Minor fix (diff) | |
download | ice-8fd299eecd81950b4f44d51ab2d9d80c955c9f9e.tar.bz2 ice-8fd299eecd81950b4f44d51ab2d9d80c955c9f9e.tar.xz ice-8fd299eecd81950b4f44d51ab2d9d80c955c9f9e.zip |
5095 - slice2cs and StyleCop
Diffstat (limited to 'cpp/src/Slice/Util.cpp')
-rw-r--r-- | cpp/src/Slice/Util.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/cpp/src/Slice/Util.cpp b/cpp/src/Slice/Util.cpp index 9d8cbe63902..c90f703974d 100644 --- a/cpp/src/Slice/Util.cpp +++ b/cpp/src/Slice/Util.cpp @@ -371,11 +371,12 @@ Slice::printGeneratedHeader(IceUtilInternal::Output& out, const string& path, co file = file.substr(pos + 1); } - out << "\n\n" << comment << " <auto-generated>"; - out << "\n" << comment; - out << "\n" << comment << " Generated from file `" << file << "'"; - out << "\n" << comment; - out << "\n" << comment << " Warning: do not edit this file."; - out << "\n" << comment; - out << "\n" << comment << " </auto-generated>\n"; + out << comment << " <auto-generated>\n"; + out << comment << "\n"; + out << comment << " Generated from file `" << file << "'" << "\n"; + out << comment << "\n"; + out << comment << " Warning: do not edit this file." << "\n"; + out << comment << "\n"; + out << comment << " </auto-generated>\n"; + out << comment << "\n"; } |