From 84da532b397e41667e53e4785e9fd401f6a184a0 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 26 Oct 2013 15:18:21 +0000 Subject: [PATCH] Added missing using declarations. [SVN r86454] --- include/boost/detail/winapi/synchronization.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/detail/winapi/synchronization.hpp b/include/boost/detail/winapi/synchronization.hpp index 2cf6cb4..46af3aa 100644 --- a/include/boost/detail/winapi/synchronization.hpp +++ b/include/boost/detail/winapi/synchronization.hpp @@ -55,11 +55,13 @@ namespace winapi using ::CreateEventW; using ::OpenEventW; using ::CreateSemaphoreW; + using ::OpenSemaphoreW; # else using ::CreateMutexA; using ::CreateEventA; using ::OpenEventA; using ::CreateSemaphoreA; + using ::OpenSemaphoreA; # endif using ::ReleaseMutex; using ::ReleaseSemaphore;