summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2014-11-26 16:34:03 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-11-26 16:34:03 -0800
commitf91322cf4aedc1842e24518ec16c76139e14d603 (patch)
tree55b23b2004fff2f2acbb45bbf68fe18b8b6606fe /src
parent0d5e1339efeae23648b05141c46b7490855a4e6d (diff)
downloadqtlocation-mapboxgl-f91322cf4aedc1842e24518ec16c76139e14d603.tar.gz
Remove unused
Diffstat (limited to 'src')
-rw-r--r--src/util/uv.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/uv.cpp b/src/util/uv.cpp
index 03a885d308..7aa5bad0cf 100644
--- a/src/util/uv.cpp
+++ b/src/util/uv.cpp
@@ -22,16 +22,4 @@ std::string cwd() {
#endif
}
-void deleter::operator()(uv_async_t *async) {
- uv_close((uv_handle_t *)async, [](uv_handle_t *handle) {
- delete (uv_async_t *)handle;
- });
-}
-
-void deleter::operator()(uv_timer_t *timer) {
- uv_close((uv_handle_t *)timer, [](uv_handle_t *handle) {
- delete (uv_timer_t *)handle;
- });
-}
-
}