Skip to content

Commit

Permalink
fix: fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN authored Dec 6, 2023
1 parent 33bb2b8 commit 65c083f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ll/api/thread/TickSyncSleep.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

#include "ll/api/chrono/GameChrono.h"

namespace ll::chrono {
namespace ll::thread {

template <class Clock>
class TickSyncSleep;
namespace detail {
LLETAPI std::mutex listMutex;
LLETAPI std::atomic_size_t tickListSize;
LLETAPI std::vector<std::variant<
std::reference_wrapper<TickSyncSleep<ServerClock>>,
std::reference_wrapper<TickSyncSleep<GameTimeClock>>>>
std::reference_wrapper<TickSyncSleep<chrono::ServerClock>>,
std::reference_wrapper<TickSyncSleep<chrono::GameTimeClock>>>>
tickList;
LLAPI void notify();
}; // namespace detail
Expand Down

0 comments on commit 65c083f

Please sign in to comment.