From a437c5b818ba1f73e4c822dba366225692ff94e1 Mon Sep 17 00:00:00 2001 From: bryanedds Date: Sun, 5 Apr 2015 17:59:53 -0400 Subject: [PATCH] Fixed truly strange error in compiling Debug builds. Former-commit-id: 15639c714f1e90aa495ad0faa48ebfc3c7aa6804 --- Nu/Nu/Nu/Core.fs | 2 +- Prime/Prime/Prime/KeyedCache.fs | 4 ++-- Prime/Prime/Prime/MutantCache.fs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Nu/Nu/Nu/Core.fs b/Nu/Nu/Nu/Core.fs index 31b7aa7d88..00f6595e33 100644 --- a/Nu/Nu/Nu/Core.fs +++ b/Nu/Nu/Nu/Core.fs @@ -25,7 +25,7 @@ module internal CoreInternal = Stopwatch.GetTimestamp () #else /// Query the windows performance counter. - [] + [] extern bool private QueryPerformanceCounter (int64&) /// Get a time stamp at the highest-available resolution on windows. diff --git a/Prime/Prime/Prime/KeyedCache.fs b/Prime/Prime/Prime/KeyedCache.fs index 97487b9b33..0e9ba91852 100644 --- a/Prime/Prime/Prime/KeyedCache.fs +++ b/Prime/Prime/Prime/KeyedCache.fs @@ -2,8 +2,8 @@ [] 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 diff --git a/Prime/Prime/Prime/MutantCache.fs b/Prime/Prime/Prime/MutantCache.fs index 6180810766..d80a05a0b2 100644 --- a/Prime/Prime/Prime/MutantCache.fs +++ b/Prime/Prime/Prime/MutantCache.fs @@ -2,7 +2,7 @@ [] 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.