aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/service/src/service_handle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'um/service/src/service_handle.cpp')
-rw-r--r--um/service/src/service_handle.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/um/service/src/service_handle.cpp b/um/service/src/service_handle.cpp
deleted file mode 100644
index adce7f0..0000000
--- a/um/service/src/service_handle.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "Windows 7 drivers" project.
-// For details, see https://github.com/egor-tensin/windows7-drivers.
-// Distributed under the MIT License.
-
-#include "libservice/all.hpp"
-
-#include <utility>
-
-namespace libservice
-{
- void swap(ServiceHandle& a, ServiceHandle& b) LIBSERVICE_NOEXCEPT
- {
- a.swap(b);
- }
-}
-
-namespace std
-{
- template <>
- void swap<libservice::ServiceHandle>(
- libservice::ServiceHandle& a,
- libservice::ServiceHandle& b) LIBSERVICE_NOEXCEPT
- {
- a.swap(b);
- }
-}