diff options
author | stobies <unknown> | 2012-01-11 09:55:06 +0100 |
---|---|---|
committer | stobies <unknown> | 2012-01-11 09:55:06 +0100 |
commit | bf2bd08a7ebecfdec77e5bf64d1a4dda7973bcc6 (patch) | |
tree | 2635ee1d9e9984ad9c45211c70ea0b6072004b4e /Source/BoogieDriver | |
parent | 416d28d0927ef49e60b3ac964782e175b7805892 (diff) |
Use DateTime.UtcNow instead of DateTime.Now
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r-- | Source/BoogieDriver/BoogieDriver.cs | 4 |
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) {
|