Skip to content

Commit

Permalink
rename/move
Browse files Browse the repository at this point in the history
  • Loading branch information
petiaccja committed Nov 17, 2023
1 parent 1f62519 commit 7ec4f4a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "spinlock.hpp"
#include "../sync/spinlock.hpp"

#include <mutex>

Expand Down
3 changes: 2 additions & 1 deletion include/async++/shared_task.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
#include "interleaving/sequence_point.hpp"
#include "promise.hpp"
#include "scheduler.hpp"
#include "sync/atomic_collection.hpp"
#include "container/atomic_collection.hpp"

#include <cassert>
#include <future>
#include <utility>


namespace asyncpp {
Expand Down
4 changes: 3 additions & 1 deletion include/async++/task.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
#include "awaitable.hpp"
#include "interleaving/sequence_point.hpp"
#include "promise.hpp"
#include "scheduler.hpp"

#include <cassert>
#include <coroutine>
#include <future>
#include <utility>


namespace asyncpp {
Expand Down Expand Up @@ -164,7 +166,7 @@ namespace impl_task {
};


} // namespace impl_async_task
} // namespace impl_task


template <class T>
Expand Down
2 changes: 1 addition & 1 deletion include/async++/thread_pool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


#include "scheduler.hpp"
#include "sync/atomic_stack.hpp"
#include "container/atomic_stack.hpp"

#include <atomic>
#include <condition_variable>
Expand Down
2 changes: 1 addition & 1 deletion test/test_atomic_collection.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <async++/sync/atomic_collection.hpp>
#include <async++/container/atomic_collection.hpp>

#include <catch2/catch_test_macros.hpp>

Expand Down
2 changes: 1 addition & 1 deletion test/test_atomic_stack.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <async++/sync/atomic_stack.hpp>
#include <async++/container/atomic_stack.hpp>

#include <catch2/catch_test_macros.hpp>

Expand Down
2 changes: 1 addition & 1 deletion test/test_schedulers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <async++/promise.hpp>
#include <async++/scheduler.hpp>
#include <async++/sync/atomic_stack.hpp>
#include <async++/container/atomic_stack.hpp>

#include <cassert>

Expand Down

0 comments on commit 7ec4f4a

Please sign in to comment.