From 738a93db68831cca6611970e22072a3e63376818 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Fri, 21 Feb 2020 16:46:14 -0500 Subject: [PATCH] Fix s-expression symbol library formatter build issue due to UUID support. --- eeschema/sch_sexpr_plugin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eeschema/sch_sexpr_plugin.cpp b/eeschema/sch_sexpr_plugin.cpp index c88449b59e..57ab99e8a8 100644 --- a/eeschema/sch_sexpr_plugin.cpp +++ b/eeschema/sch_sexpr_plugin.cpp @@ -512,8 +512,7 @@ SCH_SHEET* SCH_SEXPR_PLUGIN::loadSheet( LINE_READER& aReader ) { std::unique_ptr< SCH_SHEET > sheet( new SCH_SHEET() ); - sheet->SetTimeStamp( GetNewTimeStamp() ); - + // Timesheet time stamps are now automatically generated. return sheet.release(); }