summaryrefslogtreecommitdiff
path: root/Source/BoogieDriver
diff options
context:
space:
mode:
authorGravatar stobies <unknown>2012-01-11 09:55:06 +0100
committerGravatar stobies <unknown>2012-01-11 09:55:06 +0100
commitbf2bd08a7ebecfdec77e5bf64d1a4dda7973bcc6 (patch)
tree2635ee1d9e9984ad9c45211c70ea0b6072004b4e /Source/BoogieDriver
parent416d28d0927ef49e60b3ac964782e175b7805892 (diff)
Use DateTime.UtcNow instead of DateTime.Now
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r--Source/BoogieDriver/BoogieDriver.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.cs b/Source/BoogieDriver/BoogieDriver.cs
index 32c3b194..d5a98913 100644
--- a/Source/BoogieDriver/BoogieDriver.cs
+++ b/Source/BoogieDriver/BoogieDriver.cs
@@ -536,7 +536,7 @@ namespace Microsoft.Boogie {
DateTime start = new DateTime(); // to please compiler's definite assignment rules
if (CommandLineOptions.Clo.Trace || CommandLineOptions.Clo.XmlSink != null) {
- start = DateTime.Now;
+ start = DateTime.UtcNow;
if (CommandLineOptions.Clo.Trace) {
Console.WriteLine();
Console.WriteLine("Verifying {0} ...", impl.Name);
@@ -584,7 +584,7 @@ namespace Microsoft.Boogie {
string timeIndication = "";
- DateTime end = DateTime.Now;
+ DateTime end = DateTime.UtcNow;
TimeSpan elapsed = end - start;
if (CommandLineOptions.Clo.Trace || CommandLineOptions.Clo.XmlSink != null) {
if (CommandLineOptions.Clo.Trace) {