]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1511] removed adding dates to files generated by kea-msg-compiler
authorMichal Nowikowski <godfryd@isc.org>
Thu, 29 Oct 2020 08:31:19 +0000 (09:31 +0100)
committerMichal Nowikowski <godfryd@isc.org>
Mon, 4 Jan 2021 12:57:18 +0000 (13:57 +0100)
src/lib/log/compiler/message.cc

index 5d895465e1715532136fb4c997ea645e0005f0cd..15b83a04760ed20c5fa57d4fdcf7c693655972a2 100644 (file)
@@ -284,8 +284,7 @@ writeHeaderFile(const string& file, const vector<string>& ns_components,
     // after the last write.
 
     hfile <<
-        "// File created from " << message_file.fullName() << " on " <<
-            currentTime() << "\n" <<
+        "// File created from " << message_file.fullName() << "\n" <<
          "\n" <<
          "#ifndef " << sentinel_text << "\n" <<
          "#define "  << sentinel_text << "\n" <<
@@ -389,8 +388,7 @@ writeProgramFile(const string& file, const vector<string>& ns_components,
     // the last write.
 
     ccfile <<
-        "// File created from " << message_file.fullName() << " on " <<
-            currentTime() << "\n" <<
+        "// File created from " << message_file.fullName() << "\n" <<
          "\n" <<
          "#include <cstddef>\n" <<
          "#include <log/message_types.h>\n" <<