summaryrefslogtreecommitdiffstats
path: root/async/src/async.cpp
diff options
context:
space:
mode:
authorDan Vrátil <dvratil@redhat.com>2014-12-11 18:24:24 +0100
committerDan Vrátil <dvratil@redhat.com>2014-12-12 13:24:11 +0100
commit6b6e2a3ecc1e8f54b0862d66929ed6ace21892e7 (patch)
tree28e5aa75bebc5dce9f80697c8a9eaf8a8c0c4241 /async/src/async.cpp
parente0ba51543037a026e2a8d483dfdc0e196e9dc59e (diff)
downloadsink-6b6e2a3ecc1e8f54b0862d66929ed6ace21892e7.tar.gz
sink-6b6e2a3ecc1e8f54b0862d66929ed6ace21892e7.zip
Async: move some common code from executors to shared base class
Diffstat (limited to 'async/src/async.cpp')
-rw-r--r--async/src/async.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/async/src/async.cpp b/async/src/async.cpp
index c4a88fd..16da384 100644
--- a/async/src/async.cpp
+++ b/async/src/async.cpp
@@ -28,7 +28,7 @@
28 28
29using namespace Async; 29using namespace Async;
30 30
31JobBase::JobBase(Executor *executor) 31JobBase::JobBase(ExecutorBase *executor)
32 : mExecutor(executor) 32 : mExecutor(executor)
33{ 33{
34} 34}