$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r86455 - trunk/boost/detail/winapi
From: andrey.semashev_at_[hidden]
Date: 2013-10-26 11:21:25
Author: andysem
Date: 2013-10-26 11:21:25 EDT (Sat, 26 Oct 2013)
New Revision: 86455
URL: http://svn.boost.org/trac/boost/changeset/86455
Log:
Added missing using declarations.
Text files modified:
trunk/boost/detail/winapi/synchronization.hpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Modified: trunk/boost/detail/winapi/synchronization.hpp
==============================================================================
--- trunk/boost/detail/winapi/synchronization.hpp Sat Oct 26 11:18:21 2013 (r86454)
+++ trunk/boost/detail/winapi/synchronization.hpp 2013-10-26 11:21:25 EDT (Sat, 26 Oct 2013) (r86455)
@@ -52,12 +52,14 @@
# ifdef BOOST_NO_ANSI_APIS
using ::CreateMutexW;
+ using ::OpenMutexW;
using ::CreateEventW;
using ::OpenEventW;
using ::CreateSemaphoreW;
using ::OpenSemaphoreW;
# else
using ::CreateMutexA;
+ using ::OpenMutexA;
using ::CreateEventA;
using ::OpenEventA;
using ::CreateSemaphoreA;