Skip to content

Commit

Permalink
Fixed truly strange error in compiling Debug builds.
Browse files Browse the repository at this point in the history
Former-commit-id: 15639c7
  • Loading branch information
bryanedds committed Apr 5, 2015
1 parent f769e9d commit a437c5b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Nu/Nu/Nu/Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module internal CoreInternal =
Stopwatch.GetTimestamp ()
#else
/// Query the windows performance counter.
[<DllImport("Kernel32.dll")>]
[<DllImport "Kernel32.dll">]
extern bool private QueryPerformanceCounter (int64&)

/// Get a time stamp at the highest-available resolution on windows.
Expand Down
4 changes: 2 additions & 2 deletions Prime/Prime/Prime/KeyedCache.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[<RequireQualifiedAccess>]
module KeyedCacheMetrics =
let mutable private GlobalCacheHits = 0L
let mutable private GlobalCacheMisses = 0L
let mutable internal GlobalCacheHits = 0L
let mutable internal GlobalCacheMisses = 0L
let getGlobalCacheHits () = GlobalCacheHits
let getGlobalCacheMisses () = GlobalCacheMisses

Expand Down
2 changes: 1 addition & 1 deletion Prime/Prime/Prime/MutantCache.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[<RequireQualifiedAccess>]
module MutantCacheMetrics =
let mutable private GlobalMutantRebuilds = 0L
let mutable internal GlobalMutantRebuilds = 0L
let getGlobalMutantRebuilds () = GlobalMutantRebuilds

/// Presents a purely-functional interface to a mutable object / record / whatever.
Expand Down

0 comments on commit a437c5b

Please sign in to comment.