summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Network.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-06-29 11:16:14 -0400
committerJoe George <joe@zeroc.com>2016-06-29 11:26:52 -0400
commit9d5e62c9d1c721b4fc116a5108c81162d2df8c9d (patch)
tree75b9b27e786bb64c3ffbc1fe0565dda531af2d54 /cpp/src/Ice/Network.cpp
parentReduced number of symbols exported by generated code with MSVC (diff)
downloadice-9d5e62c9d1c721b4fc116a5108c81162d2df8c9d.tar.bz2
ice-9d5e62c9d1c721b4fc116a5108c81162d2df8c9d.tar.xz
ice-9d5e62c9d1c721b4fc116a5108c81162d2df8c9d.zip
Whitespace cleanup - tabs to spaces
Diffstat (limited to 'cpp/src/Ice/Network.cpp')
-rwxr-xr-xcpp/src/Ice/Network.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp
index e0788a5d72a..5cccc3c6e61 100755
--- a/cpp/src/Ice/Network.cpp
+++ b/cpp/src/Ice/Network.cpp
@@ -824,8 +824,8 @@ IceInternal::NativeInfo::completed(SocketOperation operation)
void
IceInternal::NativeInfo::queueAction(SocketOperation op, IAsyncAction^ action, bool connect)
{
- AsyncInfo* asyncInfo = getAsyncInfo(op);
- if(checkIfErrorOrCompleted(op, action, connect))
+ AsyncInfo* asyncInfo = getAsyncInfo(op);
+ if(checkIfErrorOrCompleted(op, action, connect))
{
asyncInfo->count = 0;
}
@@ -836,12 +836,12 @@ IceInternal::NativeInfo::queueAction(SocketOperation op, IAsyncAction^ action, b
{
if(status != Windows::Foundation::AsyncStatus::Completed)
{
- asyncInfo->count = SOCKET_ERROR;
- asyncInfo->error = info->ErrorCode.Value;
+ asyncInfo->count = SOCKET_ERROR;
+ asyncInfo->error = info->ErrorCode.Value;
}
else
{
- asyncInfo->count = 0;
+ asyncInfo->count = 0;
}
completed(op);
});
@@ -904,7 +904,7 @@ IceInternal::NativeInfo::checkIfErrorOrCompleted(SocketOperation op, IAsyncInfo^
// error. A canceled async status can occur if there's a timeout
// and the socket is closed.
//
- Windows::Foundation::AsyncStatus status = info->Status;
+ Windows::Foundation::AsyncStatus status = info->Status;
if(status == Windows::Foundation::AsyncStatus::Completed)
{
_completedHandler(op);