aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/once.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/win32/once.cxx')
-rw-r--r--odb/details/win32/once.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/details/win32/once.cxx b/odb/details/win32/once.cxx
index 0125d23..33523c3 100644
--- a/odb/details/win32/once.cxx
+++ b/odb/details/win32/once.cxx
@@ -16,18 +16,18 @@ namespace odb
{
namespace details
{
- CRITICAL_SECTION once::cs_;
+ CRITICAL_SECTION win32_once_cs_;
void
once_process_start ()
{
- InitializeCriticalSection (&once::cs_);
+ InitializeCriticalSection (&win32_once_cs_);
}
void
once_process_end (bool)
{
- DeleteCriticalSection (&once::cs_);
+ DeleteCriticalSection (&win32_once_cs_);
}
}
}