Skip to content
Snippets Groups Projects
Unverified Commit 4171abac authored by DavidFair's avatar DavidFair Committed by GitHub
Browse files

Re #0 Remove superflous macro from testing

parent c4b60e60
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ std::string getTimeStamp() { ...@@ -67,7 +67,7 @@ std::string getTimeStamp() {
auto time = std::time(nullptr); auto time = std::time(nullptr);
auto localTime = std::localtime(&time); auto localTime = std::localtime(&time);
#if _MSC_VER || __GNUG__ && __GNUG__ < 5 #if __GNUG__ && __GNUG__ < 5
// Have to workaround GCC 4 not having std::put_time on RHEL7 // Have to workaround GCC 4 not having std::put_time on RHEL7
// this ifdef can be removed when RHEL7 uses a newer compiler // this ifdef can be removed when RHEL7 uses a newer compiler
char timestamp[20]; char timestamp[20];
...@@ -322,8 +322,6 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) { ...@@ -322,8 +322,6 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) {
return; return;
} }
using Mantid::API::WorkspaceHistory;
static auto startTime = static auto startTime =
Mantid::Kernel::UsageService::Instance().getStartTime().toISO8601String(); Mantid::Kernel::UsageService::Instance().getStartTime().toISO8601String();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment