diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-08-07 17:21:35 +0300 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-08-07 18:48:42 +0300 |
commit | 2dd8ec885453b6c75d982dd90722e583b2da3525 (patch) | |
tree | 4ae9b61aa42da54f08d188773b31be820d1ae565 /test | |
parent | d49c4cd61c0d5b29bf21c029e4a3201563de1671 (diff) | |
download | qtlocation-mapboxgl-2dd8ec885453b6c75d982dd90722e583b2da3525.tar.gz |
[core] Removed unused constructorupstream/tvn-test-ci-time-out
Not in use at the moment, was causing a compiler error on
Apple LLVM version 8.0.0 (clang-800.0.42.1).
```
src/mbgl/sprite/sprite_loader.cpp:25:11: error: call to constructor of
'Actor<mbgl::SpriteLoaderWorker>' is ambiguous
```
Diffstat (limited to 'test')
-rw-r--r-- | test/actor/actor.test.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/test/actor/actor.test.cpp b/test/actor/actor.test.cpp index 39d7ff81f4..2b4c83f566 100644 --- a/test/actor/actor.test.cpp +++ b/test/actor/actor.test.cpp @@ -305,34 +305,3 @@ TEST(Actor, Ask) { ASSERT_EQ(std::future_status::ready, status); ASSERT_EQ(2, result.get()); } - -TEST(Actor, NoSelfActorRef) { - // Not all actors need a reference to self - - // Trivially constructable - struct Trivial {}; - - ThreadPool pool { 2 }; - Actor<Trivial> trivial(pool); - - - // With arguments - struct WithArguments { - std::promise<void> promise; - - WithArguments(std::promise<void> promise_) - : promise(std::move(promise_)) { - } - - void receive() { - promise.set_value(); - } - }; - - std::promise<void> promise; - auto future = promise.get_future(); - Actor<WithArguments> withArguments(pool, std::move(promise)); - - withArguments.invoke(&WithArguments::receive); - future.wait(); -} |